Questions tagged [image-load]

47 questions
55
votes
6 answers

Detect image load

Is it possible to detect once an image has been loaded with jQuery?
Pablo
  • 4,033
  • 7
  • 29
  • 34
31
votes
8 answers

Android OutOfMemoryError:?

I am sporadically getting an OutOfMemoryError: (Heap Size=49187KB, Allocated=41957KB) in one of my apps. What can I do to diagnose this? 01-09 10:32:02.079: E/dalvikvm(8077): Out of memory: Heap Size=49187KB, Allocated=41957KB, Limit=49152KB …
NagarjunaReddy
  • 8,500
  • 10
  • 60
  • 94
8
votes
1 answer

Multiple calls from via ggpht.com GoogleImageProxy agent

I am seeing increased number of calls from via ggpht.com GoogleImageProxy agent for some of the URL fetches. Details: I have put in an image in the email html body. When I open the email, I expect a call to be made to my server to fetch this image.…
Aparna
  • 443
  • 4
  • 16
5
votes
1 answer

How to get bitmap from URL using Coil?

I want to load a bitmap from URL and then use palette API to get some colors from that. On the documentation page, I cannot find the code for getting bitmap directly! Can anyone help me out?
Chintan Parmar
  • 795
  • 6
  • 12
5
votes
2 answers

How can I save/load a 16 bit image in .net x64?

Before, when I was using win32, I used FreeImage in order to load and save bitmaps of bit depth greater than 8 bits. That's every image I work with, since I'm doing medical imaging, and before anyone says anything, yes, me and my customers have…
mmr
  • 14,271
  • 28
  • 89
  • 142
4
votes
2 answers

Check if image is already cached with jQuery

I need to add a .load function to an image, however, I do not want this function added if the image is already cached, mainly because in that .load function I fade in the image and hide a loading indicator. If the image is already cached, I need…
user429620
4
votes
0 answers

Using imageSwitcher with imageLoader

I'm a beginner with the android platform. I want to use ImageLoader with ImageSwitch in my ListAdapter. What is the way to do that? Thanks
Chandanit
  • 57
  • 4
3
votes
1 answer

Cancelling the Image Request Android on the basis of progress - Image loader Volley , Picasso

There are many popular Image loader available in Github for image loading and caching and Managing Image Request. Universal Image Loader Volley Picasso Fresco (added enhancement ) I came across the requirement if the Imageview if no longer…
2
votes
1 answer

What does keras.preprocessing.image.load_img do during resizing?

What does keras.preprocessing.image.load_img do during image resizing? In the following statement, target size is set to 128x128. image1 = img_to_array(image.load_img(img, target_size=(128,128))) / 255 What if I load 100x100 size image? Will it…
PCG
  • 784
  • 13
  • 27
2
votes
2 answers

jQuery progressbar on changing image .attr('src')

I have an image declared in HTML as: image_01 I'm changing the image through jQuery: $('#man_img_file').attr('src', "images/image_02.gif"); Now I want to display a…
storvas
  • 97
  • 1
  • 5
1
vote
3 answers

Fade in image only after finish loading

I've some images on a page which are loaded randomly and they are over 100kbs, is it possible to have it fully loaded then fade it in rather than progressively loading it? My JS looks like this... (function($){ $.randomImage = { defaults: { …
calebo
  • 2,758
  • 7
  • 37
  • 65
1
vote
1 answer

GWT Fetch Image before Use

In a GWT application, i'm sure to use one image, but i want the application to load only when the image i'm going to use has already been loaded so that the user does not see the image partially loading, how can i do it??
Noor
  • 18,061
  • 35
  • 123
  • 236
1
vote
2 answers

Image getting cached in Angular

I am using angular version 9. I have 2 components. 1 to search a car make, model and 2nd component to load the details of the car that is selected from component 1. I pass the image link for the car from the car that is selected from component 1 to…
girish
  • 174
  • 1
  • 3
  • 15
1
vote
1 answer

Universal Image Loader Stop Retry

I've a problem with Universal Image Loader 1.9.1 on android 4.2.2. The same described here: Android Universal image loader, stop retry. I've read NOSTRA answer multiple times, but I can't figure out how to implement that. Should I extend…
1
vote
1 answer

Loading images sequentially

I'm building a site with a large amount of big images (10-40, ~300kb/img), and looking for a way of loading (not displaying!) them sequentially. I already have a piece of js that will display and trigger the carousel once the first 3 images have…
Eric Mitjans
  • 1,939
  • 5
  • 32
  • 58
1
2 3 4