1

エラーが発生します:java.lang.OutOfMemoryError: bitmap size exceeds VM budget(Heap Size=12295KB, Allocated=3007KB, Bitmap Size=15621KB)

ビットマップのサイズが heapSize よりも大きい..どうすればビットマップを小さくできますか? クラッシュするコードは次のとおりです。

private Bitmap getPicture(int position) {
    Bitmap bmpOriginal = BitmapFactory.decodeFile(mFileLocations.get(position));
    Bitmap bmResult = Bitmap.createBitmap(bmpOriginal.getWidth(), bmpOriginal.getHeight(), Bitmap.Config.RGB_565);
    Canvas tempCanvas = new Canvas(bmResult);
    tempCanvas.rotate(90, bmpOriginal.getWidth()/2, bmpOriginal.getHeight()/2);
    tempCanvas.drawBitmap(bmpOriginal, 0, 0, null);
    bmpOriginal.recycle();
}

次の行でクラッシュします。

 Bitmap bmResult = Bitmap.createBitmap(bmpOriginal.getWidth(), bmpOriginal.getHeight(), Bitmap.Config.RGB_565);

と私のdecodeFile:

private Bitmap decodeFile(String f){
    try {
        //Decode image size
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;
        BitmapFactory.decodeStream(new FileInputStream(f),null,o);

        //The new size we want to scale to
        final int REQUIRED_SIZE=70;

        //Find the correct scale value. It should be the power of 2.
        int scale=1;
        while(o.outWidth/scale/2>=REQUIRED_SIZE && o.outHeight/scale/2>=REQUIRED_SIZE)
            scale*=2;

        //Decode with inSampleSize
        BitmapFactory.Options o2 = new BitmapFactory.Options();
        o2.inSampleSize=scale;
        return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
    } catch (FileNotFoundException e) {
        Log.d(LOG_TAG, "Failed to decode file");
    }
    return null;
}
4

3 に答える 3

2

イメージをスケールダウンして VM 予算内に収めます...

BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    BitmapFactory.decodeFile( filename, options );
        options.inJustDecodeBounds = false;
        options.inSampleSize = 4; 

        bitmap = BitmapFactory.decodeFile( filename, options );
        if ( bitmap != null ) {
            bitmap = Bitmap.createScaledBitmap( bitmap, width, height, false );
        }

サンプル サイズを 2、4、6、8 などの任意のサイズに変更します。

完全な詳細については、最近投稿された Android 開発者サイトからこれを参照してください。VM の予算内で何をする必要があるかが明確に記載されています。

于 2012-04-13T18:39:42.797 に答える
1

2つのこと:

BitmapFactory.decodeFile投稿した方法ではなく、方法を使用しているようです。

bmpOriginalまた、保持している唯一の情報はその寸法であるように見えます。BitmapFactory.inJustDecodeBoundsでは、メソッドで行うように使用してみませんかdecodeFile。または、次のように、その寸法を保持しながら新しいビットマップを作成する前に、ビットマップをリサイクルしてください。

int width = bmpOriginal.getWidth();
int height = bmpOriginal.getHeight();
bmpOriginal.recycle();
Bitmap bmResult = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
于 2012-04-13T18:42:24.993 に答える
0

これは最近 AndroidDevelopers+ で取り上げられました:

https://plus.google.com/103125970510649691204/posts/1oSFSyv3pRj

于 2012-04-13T18:38:13.610 に答える