gpt4 book ai didi

java - 图像从 SD 卡加载

转载 作者:行者123 更新时间:2023-12-02 07:07:36 25 4
gpt4 key购买 nike

我从我的服务器下载了大约 100 张图片,以便在 listView 中显示它们,

因此我将它们保存在我的SD卡中,这样我就不会收到OutOfMemoryException。

但是,我发现即使我将它们下载到 SD 卡,我也必须将它们解码为位图,这会占用大量内存然后显示它们,因此我也会收到“OutOfMemory”异常。

有什么办法可以解决吗?

非常感谢

这是我从 SD 卡加载图像的代码:

Bitmap bmImg = BitmapFactory.decodeFile("path of img1");
imageView.setImageBitmap(bmImg);

最佳答案

尝试使用此代码从文件加载图像:

 img.setImageBitmap(decodeSampledBitmapFromFile(imagePath, 1000, 700));

decodeSampledBitmapFromFile时:

public static Bitmap decodeSampledBitmapFromFile(String path, int reqWidth, int reqHeight) 
{ // BEST QUALITY MATCH

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

// Calculate inSampleSize
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
options.inPreferredConfig = Bitmap.Config.RGB_565;
int inSampleSize = 1;

if (height > reqHeight) {
inSampleSize = Math.round((float)height / (float)reqHeight);
}

int expectedWidth = width / inSampleSize;

if (expectedWidth > reqWidth) {
//if(Math.round((float)width / (float)reqWidth) > inSampleSize) // If bigger SampSize..
inSampleSize = Math.round((float)width / (float)reqWidth);
}
options.inSampleSize = inSampleSize;

// Decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;

return BitmapFactory.decodeFile(path, options);
}

您可以使用数字(本例中为 1000、700)来配置图像文件的输出质量。

关于java - 图像从 SD 卡加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15913502/

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