Glide 库解码格式

Glide Library decode format

我想要 glide 库 Glide to use the ARGB_8888 decode format so that i can get a better picture quality but i don't really know where exactly to change that setting.This page Glide Config 阐明它,但我仍然不确定它的确切 use.I 需要将它用于默认方形图像而不是圆形 images.My 当前代码看起来像这样。

Glide.with(context)
                    .load(custom.getImage_path())
                    .override(width, height / 2)
                    .fitCenter()
                    .into(vh4.getImage_path());

事实证明这很简单,答案就在这个页面 Glide Information 以及关于图书馆的许多其他有用信息。