我建立简单的画廊。我使用 Glide 加载我的照片。看起来在通过 glide 加载的图像上有某种条纹(像素似乎是可见的)。我尝试加载更改格式的照片RGB_565/ARGB_8888
并且我使用过.dontTransform()
,但它看起来仍然比原始照片差。
我用来加载的代码:
ImageView photoDetails;
photoDetails = (ImageView)findViewById(R.id.imageDetails);
Glide.with(this)
.load(pictureFile) //path to picture
.asBitmap()
.format(DecodeFormat.PREFER_ARGB_8888)
.dontTransform()
.into(photoDetails);