在Android中仅加载部分位图文件

时间:2010-03-30 14:55:34

标签: android performance graphics

我想将位图图像的裁剪版本加载到Bitmap对象中,而不加载原始位图。

如果不编写自定义加载例程来处理原始数据,这是否可行?

谢谢, 桑德

5 个答案:

答案 0 :(得分:12)

这实际上非常简单。使用

Bitmap yourBitmap = Bitmap.createBitmap(sourceBitmap, x to start from, y to start from, width, height)

更新:使用BitmapRegionDecoder

答案 1 :(得分:10)

试试这个

InputStream istream =   null;
try {
     istream = this.getContentResolver().openInputStream(yourBitmapUri);
} catch (FileNotFoundException e1) {
     e1.printStackTrace();
}

BitmapRegionDecoder decoder     =   null;
try {
    decoder = BitmapRegionDecoder.newInstance(istream, false);
} catch (IOException e) {
    e.printStackTrace();
}
Bitmap bMap = decoder.decodeRegion(new Rect(istream, x to start from, y to start from, x to end with, y to end with), null);    
imageView.setImageBitmap(bMap);

答案 2 :(得分:0)

@RKN

您的方法也会抛出OutOfMemoryError异常 - 如果裁剪的位图超过VM。

我的方法结合了你的和防止这个例子的保护: (l,t,r,b - 图像的百分比)

    Bitmap cropBitmap(ContentResolver cr, String file, float l, float t, float r, float b)
{
    try 
    {
        BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;

        // First decode with inJustDecodeBounds=true to check dimensions
        BitmapFactory.decodeFile(file, options);
        int oWidth = options.outWidth;
        int oHeight = options.outHeight;

        InputStream istream = cr.openInputStream(Uri.fromFile(new File(file)));

        BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(istream, false);
        if (decoder != null)
        {
            options = new BitmapFactory.Options();

            int startingSize = 1;
            if ((r - l) * oWidth * (b - t) * oHeight > 2073600)
                startingSize = (int) ((r - l) * oWidth * (b - t) * oHeight / 2073600) + 1;

            for (options.inSampleSize = startingSize; options.inSampleSize <= 32; options.inSampleSize++)
            {
                try
                {
                    return decoder.decodeRegion(new Rect((int) (l * oWidth), (int) (t * oHeight), (int) (r * oWidth), (int) (b * oHeight)), options);    
                }
                catch (OutOfMemoryError e)
                {
                    Continue with for loop if OutOfMemoryError occurs
                }
            }
        }
        else
            return null;
    }
    catch (FileNotFoundException e)
    {
        e.printStackTrace();
    }
    catch (IOException e) 
    {
        e.printStackTrace();
    }

    return null;
}

并返回最大可用位图或null

答案 3 :(得分:0)

使用RapidDecoder

只需这样做

import rapid.decoder.BitmapDecoder;

Rect bounds = new Rect(left, top, right, bottom);
Bitmap bitmap = BitmapDecoder.from(getResources(), R.drawable.image)
        .region(bounds).decode();

它需要Android 2.2或更高版本。

答案 4 :(得分:0)

您可以使用以下算法

加载位图的缩放版本,而无需完全加载位图
  • 计算仍然产生的最大inSampleSize 图像大于目标。
  • 使用加载图像 BitmapFactory.decodeFile(文件,选项),将inSampleSize作为传递 选项。
  • 使用调整大小到所需的尺寸 Bitmap.createScaledBitmap()。

检查以下帖子 Android: Resize a large bitmap file to scaled output file了解更多详情。