我收到错误
使用Glide库加载图像时无法在循环位图上调用reconfigure()
。 5次中有1次我收到此错误。图像大小约为1.5MB。
我使用的是Glide版本3.8.0。
以下是我的转化代码:
public class ScaleToFitWidthHeightTransform extends BitmapTransformation {
int mSize = AppConstants.HEIGHT_TRANSFORM_LIMIT; //1020
boolean isHeightScale;
public ScaleToFitWidthHeightTransform(Context context) {
super(context);
}
public Bitmap transform(Bitmap source) {
float scale;
int newSize;
int sourceHeight = source.getHeight();
int sourceWidth = source.getWidth();
// If original bitmap height/width is less then the height/width transform limit
// then no need to scale the bitmap, so return the original bitmap
if (sourceHeight < AppConstants.HEIGHT_TRANSFORM_LIMIT && sourceWidth < AppConstants.WIDTH_TRANSFORM_LIMIT) { // Height and width limit is 1020.
return source;
}
Bitmap scalBitmap;
if (sourceHeight > sourceWidth) {
scale = (float) AppConstants.HEIGHT_TRANSFORM_LIMIT / source.getHeight();
newSize = Math.round(source.getWidth() * scale);
scaleBitmap = Bitmap.createScaledBitmap(source, newSize, mSize, true);
} else {
scale = (float) AppConstants.WIDTH_TRANSFORM_LIMIT / source.getWidth();
newSize = Math.round(source.getHeight() * scale);
scaleBitmap = Bitmap.createScaledBitmap(source, mSize, newSize, true);
}
if (scaleBitmap != source) {
source.recycle();
}
return scaleBitmap;
}
@Override
protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
return transform(toTransform);
}
@Override
public String getId() {
return "com.abc";
}
以下是我使用Glide的行
Glide.with(context)
.load(imageUri).asBitmap()
.transform(new ScaleToFitWidthHeightTransform(context))
.placeholder(defaultDrawable)
.error(defaultDrawable)
.into(new SimpleTarget<Bitmap>() {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
BitmapSourceData bitmapSourceData = null;
bitmapSourceData = new BitmapSourceData();
bitmapSourceData.setBitmapSource(getBitmapBytes(resource));
if (imageView != null) {
imageView.setImageBitmap(resource);
}
}
@Override
public void onLoadFailed(Exception e, Drawable errorDrawable) {
super.onLoadFailed(e, errorDrawable);
Log.e("ABC", "Exception --> " + e.toString());
}); // Here I am getting error printed.
我在网上搜索过。它说它是由于使用循环位图,但我无法解决它。
那我在做什么是错的。?
答案 0 :(得分:0)
您已在此处回收了位图..
if (scaleBitmap != source) {
source.recycle();
}
不要这样做..
另外,createScaledBitmap是一个非常繁重的操作,避免使用它。您可以使用画布和矩阵缩放位图..
答案 1 :(得分:0)
您不必回收位图。只要注意您的参考计数即可。如果没有更多的参考位图,GC将积极地为您清除该位图。这只是一个标志,它可以更快地成为GC。
有关回收方法的位图文档:
/ ** *释放与此位图关联的本机对象,并清除 *参考像素数据。这将不会同步释放像素数据。 *如果没有其他引用,它只是允许对其进行垃圾回收。 *位图被标记为“死”,这意味着如果以下情况将抛出异常 * getPixels()或setPixels()被调用,并且不会绘制任何内容。此操作 *不能反转,因此仅当您确定没有时才应调用它 *进一步用于位图。这是一个高级通话,通常需要 *不被调用,因为正常的GC进程将在以下情况下释放此内存: *没有更多关于此位图的引用。