【问题标题】:Bitmap create out of memory位图创建内存不足
【发布时间】:2012-11-16 15:13:44
【问题描述】:

我正在尝试从相机 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(),但没有帮助。

【问题讨论】:

标签: java android bitmap out-of-memory


【解决方案1】:

如果你开发你的应用程序 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;
}

感谢该代码,您还可以调整位图的大小。

【讨论】:

  • 在清单中添加“largeHeap”并不是一个好习惯,除非真的需要。
【解决方案2】:

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

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


bmp = BitmapFactory.decodeStream(new FileInputStream(f),null, options);

【讨论】:

  • 创建选项以帮助使用更少的内存,如果你想你可以添加 options.inPreferredConfig = Bitmap.Config.RGB_565;也
猜你喜欢
  • 2011-05-18
  • 1970-01-01
  • 1970-01-01
  • 2013-08-02
  • 1970-01-01
  • 2011-08-07
  • 1970-01-01
  • 2011-10-04
  • 2013-05-08
相关资源
最近更新 更多