Questions tagged [image-loading]

386 questions
0
votes
1 answer

Sitecore 8: caching for media- images

I was having a peek into the caching settings for media in the web.config and found out that something needs some clarification. I found one setting called "MediaResponse.MaxAge". I think this setting is to set the cache expiry to given format…
0
votes
3 answers

How to handle cache issues on android?

I am using Volley ImageLoader to load images from server and display theme inside my RecyclerView, here is code of my ImageLoader: mImageLoader=new ImageLoader(mRequestQueue,new ImageLoader.ImageCache() { private LruCache
0
votes
0 answers

images load then disappear on devices in any browser in java

working in java,JSP,jQuery other images and profile image loading and then disappears on any device like iPad or tablet in the browser but working fine on the desktop. What might be the issue please help. other images displaying in jquery data…
Kamini
  • 690
  • 2
  • 13
  • 36
0
votes
0 answers

Getting SocketException while loading Images from Server

I am loading images in my listview from Server. All the images are .png and the size is quite less so that it can be easily shown like a thum image in a listview. But every time I am getting java.net.SocketException: recvfrom failed: ECONNRESET…
Salman Khan
  • 2,822
  • 5
  • 32
  • 53
0
votes
2 answers

Image not loading from server in mozilla and safari browsers and image name is in arabic format.appering ???? marks insted of arabic text?

I am using flash cs 6 and as3. i am loading image from server. url is ......../....../images/باجندوح.png. am getting image when ever i enter this url in browser.but am running my code from flash builder am getting this error "Error opening URL…
Usha Kommuri
  • 71
  • 1
  • 11
0
votes
1 answer

Image loading using Picasso or other libraries are slow in my application

I'm using Picasso in my application inside an adapter and everything is fine except image loading performance while scrolling. If I scroll the list, on loading every images the scroll will be stopped a moment and that's a bad performance. I don't…
Alex
  • 1,623
  • 1
  • 24
  • 48
0
votes
1 answer

Android + Volley: how to get image bitmap using ImageLoader?

I'm trying to get images for list view using Volley Library. I created simple HTTP helper with the following method. /** * Processing Image request and gets the image with given URL */ public Bitmap makeImageRequest(String url) { …
redrom
  • 11,502
  • 31
  • 157
  • 264
0
votes
4 answers

File not found error with LoadImage() (Windows)

EDIT: I've added a few more lines of the program to the code snippet below. I have the following line of code in a program BITMAP BMP; HBITMAP hBMP; hBMP = (HBITMAP)LoadImage(GetModuleHandle(NULL), "Test.bmp", IMAGE_BITMAP, 0, 0,…
user98188
0
votes
1 answer

Visual Studio 2013 C# Add all images from imagelist to listview

Currently I have zero code to show and display because I am new to using Visual Studio, Let me first explain what result I am trying to get so that you can better understand what I am trying to do. I will be making my first attempt at coding a…
0
votes
0 answers

Image load delay on iphone and ipad

A set of (5) navigation buttons are slow to load on iphone and ipad. Each button consist of a common background image, overlaid with the specific icon for that button, there is also a mouseover version swapped in with javascript. Background and…
0
votes
3 answers

Android Custom Listview Image loading without libraries

I want to load images from sd card into a custom listview. My listview contains image view and a text view. I know there are many libraries which can help me achieve this, but I want to do without using such libraries. Problem :- I am loading the…
Shiv Baral
  • 409
  • 4
  • 11
  • 18
0
votes
1 answer

How to load images,audio from folder in Project to work in .jar file

I have in project extra folder called "res" which i set as an class folder. Evererything works fine when i run it in eclipse but wher i export it as jar file it doesn't there is problem with null pointer as if it can't see my images ,audio. I put…
stanisz93
  • 31
  • 4
0
votes
2 answers

Replace image without server request using Fresco

I was wondering if there was a way to replace a image in Fresco without reloading it from the server. I have a app where I let the users modify a image and then I upload that new image to the server. However with the way Fresco works I'd need to…
Papajohn000
  • 809
  • 1
  • 16
  • 32
0
votes
3 answers

How to get image URL from parameters in api and display it into Imageview

I am working on a Social networking application in which I have to get user's details from the server. I am getting user's Profile image url in parameter but I am having problem in getting image and displaying it, because every time it is showing…
Devraj
  • 1,479
  • 1
  • 22
  • 42
0
votes
1 answer

ListView images preloading im ImageView without delay (using Picasso or other libs)

I have the problem with image loading in listview. I'm using Picasso to load pictures from network into my imageViews in each row. When I'm scrolling first time there always white background before image loaded in its place. Even if I scroll very…
Nikita Axyonov
  • 1,314
  • 8
  • 18