glide load 使用了override加载就会失败
ccccmmmz opened this issue · 4 comments
ccccmmmz commented
glide load 使用了override加载就会失败
zjupure commented
没明白这是什么问题,sample工程有问题吗
ccccmmmz commented
GlideApp.with(mContext)
.load(url)
.optionalTransform(circleCrop)
.optionalTransform(WebpDrawable.class, new WebpDrawableTransformation(circleCrop))
.into(imageView);
就是这里面如果使用了override()就会失败
ccccmmmz commented
1.6.4.8.0可以怎么可以加载指定size的webp嘛 就是使用override()属性
zjupure commented
GlideApp.with(mContext)
.load(url)
.optionalTransform(circleCrop)
.optionalTransform(WebpDrawable.class, new WebpDrawableTransformation(circleCrop))
.into(imageView);
就是这里面如果使用了override()就会失败
在sample工程里试了下,没有发现有问题,可以指定解码的图像size
GlideApp.with(mContext)
//.asBitmap()
.load(url)
.placeholder(R.drawable.image_loading)
.error(R.drawable.image_error)
.optionalTransform(mBitmapTrans)
.optionalTransform(WebpDrawable.class, new WebpDrawableTransformation(mBitmapTrans))
.override(300, 300)
.into(imageView);