Android中内存高效的图像调整大小

时间:2010-07-10 15:00:36

标签: android bitmap image-manipulation

我正在尝试将从相机中检索到的图像(大约5-8百万像素)缩小到一个较小的尺寸(最大为1024x768)。我尝试了以下代码,但我始终得到OutOfMemoryError

Bitmap image = BitmapFactory.decodeStream(this.image, null, opt);
int imgWidth = image.getWidth();
int imgHeight = image.getHeight();

// Constrain to given size but keep aspect ratio
float scaleFactor = Math.min(((float) width) / imgWidth, ((float) height) / imgHeight);

Matrix scale = new Matrix();
scale.postScale(scaleFactor, scaleFactor);
final Bitmap scaledImage = Bitmap.createBitmap(image, 0, 0, imgWidth, imgHeight, scale, false);

image.recycle();

看起来OOM发生在createBitmap期间。是否有更高效的内存方式?也许某些东西不需要我将整个原件加载到内存中?

3 个答案:

答案 0 :(得分:16)

使用BitmapFactory解码位图时,传入BitmapFactory.Options对象并指定inSampleSize。这是解码图像时节省内存的最佳方法。

以下是示例代码Strange out of memory issue while loading an image to a Bitmap object

答案 1 :(得分:1)

您是否在应用程序中使用相机拍照?如果是这样,当您通过android.hardware.Camera.Parameters.setPictureSize

捕获图片时,应首先将图片大小设置为较小的图片尺寸

答案 2 :(得分:0)

这是一个类似的问题,我回答并展示了如何动态加载正确的图像大小。

out of memory exception + analyzing hprof file dump