Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a bunch of image URLs. I have to download these images and display them in my application one-by-one. I am saving the images in a Collection using SoftReferences and also on Sdcard to avoid refetches and improve user experience.

The problem is I dont know anything about the size of the bitmaps. And as it turns out, I am getting OutOfMemoryExceptions sporadically, when I am using BitmapFactory.decodeStream(InputStream) method. So, I chose to downsample the images using BitmapFactory Options(sample size=2). This gave a better output: no OOMs, but this affects the quality of smaller images.

How should I handle such cases? Is there a way to selectively downsample only high resolution images?

share|improve this question
The official Android Training site now has a class called Displaying Bitmaps Efficiently with a lesson, Loading Large Bitmaps Efficiently that goes over this. The Caching Bitmaps lesson also covers some information on caching using a hard reference memory cache rather than a WeakReference or SoftReference. – AdamK Apr 10 '12 at 9:58

2 Answers

up vote 42 down vote accepted

There is an option in BitmapFactory.Options class (one I overlooked) named inJustDecodeBounds, javadoc of which reads:

If set to true, the decoder will return null (no bitmap), but the out... fields will still be set, allowing the caller to query the bitmap without having to allocate the memory for its pixels.

I used it to find out the actual size of the Bitmap and then chose to down sample it using inSampleSize option. This at least avoids any OOM errors while decoding the file.

Reference:
1. Handling larger Bitmaps
2. How do I get Bitmap info before I decode

share|improve this answer
5  
+1 for answering your own question when you found out the answer; think of those who google and find your question, but no answer. – Will Feb 9 '10 at 13:19
Its really works fine if i want to get the dimensions, but i am getting OOM error when i want to decode a file to bitmap and set that bitmap to ImageView. Please tell me how to optimize it or any other way to fix this issue. – Suresoft Nov 27 '12 at 7:37

What I've done myself is :

  • use inJustDecodeBounds to get the original size of the image
  • have a fixed maximum Surface for loading the Bitmap (say 1Mpixels)
  • check if the image surface is below the limit, if yes, then load it directly
  • if not compute the ideal width and height at which you should load the Bitmap to stay below the max surface (there is some simple maths to do here). This give you a float ratio that you want to apply when loading the bitmap
  • now you want to translate this ratio to a suitable inSampleSize (a power of 2 that doesn't degrade the image quality). I use this function :
int k = Integer.highestOneBit((int)Math.floor(ratio));
if(k==0) return 1;
else return k;
  • then because the Bitmap will have been loaded with a slightly higher resolution than the max surface (because you had to use a smaller power of 2), you'll have to resize the Bitmap, but it will be much faster.
share|improve this answer
thanks for adding the routine to calculate sample size. It augments the thread with a piece of important information. – Samuh Sep 15 '10 at 7:52

protected by Luksprog Apr 14 at 10:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.