我正在使用https://github.com/thest1/LazyList进行图像缓存。我必须全屏显示图像。但图像质量有很大损失。我必须更改哪些代码才能获取原始图像。提前谢谢。
问问题
1194 次
2 回答
5
在 ImageLoader 类中寻找这个方法,
private Bitmap decodeFile(File f){
try {
//decode image size
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(new FileInputStream(f),null,o);
//Find the correct scale value. It should be the power of 2.
final int REQUIRED_SIZE=70;
int width_tmp=o.outWidth, height_tmp=o.outHeight;
int scale=1;
while(true){
if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
break;
width_tmp/=2;
height_tmp/=2;
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) {}
return null;
}
并从此方法中删除以下行,
while(true){
if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
break;
width_tmp/=2;
height_tmp/=2;
scale*=2;
}
这将确保您的图像根本不会被缩放。
但是你必须记住,如果你这样做,你的应用程序很容易受到 OOM 的影响。
于 2012-07-20T11:35:24.450 回答
0
在你ImageLoader.java
的功能
//decodes image and scales it to reduce memory consumption
private Bitmap decodeFile(File f)
用于缩放/调整您的图像大小。
final int REQUIRED_SIZE=70;
增加它以提高图像质量。让它200或什么,然后尝试。
于 2012-07-20T11:36:25.890 回答