位图创建内存不足

时间:2012-11-16 15:13:45

标签: java android bitmap out-of-memory

我正在尝试从相机Intent中在onActivityResult()中旋转拍摄的图像,但我偶尔会出现内存不足错误。

如何优化此代码?

http://pastebin.com/ieaHS8qB

bmp = BitmapFactory.decodeStream(new FileInputStream(f), null, null);
correctBmp = Bitmap.createBitmap(bmp, 0, 0, bmp.getWidth(), 
                bmp.getHeight(), mat, true);

我试图在这些行之后添加bmp.recycle()correctBmp.recycle(),但它没有帮助。

2 个答案:

答案 0 :(得分:2)

如果您开发应用程序api级别10+,则可以添加此清单

 android:largeHeap="true" //add this entity.

  <application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

或尝试此(创建类)

   public Bitmap decodeSampledBitmapFromResource(Resources res, int resId,
        int reqWidth, int reqHeight) {

    // First decode with inJustDecodeBounds=true to check dimensions
    final BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    BitmapFactory.decodeResource(res, resId, options);

    // Calculate inSampleSize
    options.inSampleSize = calculateInSampleSize(options, reqWidth,
            reqHeight);

    // Decode bitmap with inSampleSize set
    options.inJustDecodeBounds = false;
    return BitmapFactory.decodeResource(res, resId, options);
}

public static int calculateInSampleSize(BitmapFactory.Options options,
        int reqWidth, int reqHeight) {
    // Raw height and width of image
    final int height = options.outHeight;
    final int width = options.outWidth;
    int inSampleSize = 1;

    if (height > reqHeight || width > reqWidth) {
        if (width > height) {
            inSampleSize = Math.round((float) height / (float) reqHeight);
        } else {
            inSampleSize = Math.round((float) width / (float) reqWidth);
        }
    }
    return inSampleSize;
}

由于该代码,您还可以调整位图大小。

答案 1 :(得分:1)

尝试在decodestream之前添加以下代码并将选项作为参数传递。

BitmapFactory.Options options = new BitmapFactory.Options();                
options.inSampleSize = 5;               
options.inPurgeable = true;             
options.inInputShareable = true;


bmp = BitmapFactory.decodeStream(new FileInputStream(f),null, options);
相关问题