gpt4 book ai didi

android - 减小 BitmapDrawable 的大小

转载 作者:搜寻专家 更新时间:2023-11-01 08:04:00 26 4
gpt4 key购买 nike

我正在使用此功能减小图像的大小:

Drawable reduceImageSize (String path) 
{
BitmapDrawable bit1 = (BitmapDrawable) Drawable.createFromPath(path);
Bitmap bit2 = Bitmap.createScaledBitmap(bit1.getBitmap(), 640, 360, true);
BitmapDrawable bit3 = new BitmapDrawable(getResources(),bit2);
return bit3;
}

而且它工作正常,唯一的问题是当我多次调用这个函数时应用程序变慢了,有什么办法可以优化这个函数吗?也许通过矩阵减小尺寸?此外,我正在从 SD 卡读取图像,并且需要背面作为动画的 Drawable,而此功能提供了这一点。

最佳答案

使用 BitmapFactory.OptionsinJustDecodeBounds 缩小它:

位图 bitmap = getBitmapFromFile(path, width, height);

public static Bitmap getBitmapFromFile(String path, int width, int height) {
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(path, options);

// Calculate inSampleSize
options.inSampleSize = calculateInSampleSize(options, width, height);

options.inJustDecodeBounds = false;
Bitmap bitmap = BitmapFactory.decodeFile(path, options);
return bitmap;
}

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;
}

在这里阅读更多相关信息:Loading Large Bitmaps Efficiently

此外,我不确定您在哪里调用此方法,但如果您有很多方法,请确保您正在使用 LruCache 或类似方法缓存位图:Caching Bitmaps

关于android - 减小 BitmapDrawable 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16915619/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com