标签: android android-glide
所以我已经学会了如何使用glide从服务器加载图像并对其进行转换,并且效果很好。
但是现在,我想知道在将其设置为src之前,如何对我设置到ImageView的图像使用相同的转换?
答案 0 :(得分:4)
您可以像使用服务器Glide.with(context).load(uri).transform(new Transform()).into(view)中的图像一样使用它,其中uri是图片的本地uri,而Transform是您的转换类。
Glide.with(context).load(uri).transform(new Transform()).into(view)