本文主要是介绍Glide-更多图片变换,glide-transformations的使用(六),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Gradle
compile 'jp.wasabeef:glide-transformations:3.0.1'
模糊处理
Glide.with(this).load(url).apply(bitmapTransform(new BlurTransformation(25))).into(imageView);
黑白化
Glide.with(this).load(url).apply(bitmapTransform(new GrayscaleTransformation())).into(imageView);
多个效果
现在实现模糊效果加圆角效果
MultiTransformation multi = new MultiTransformation(new BlurTransformation(25),new RoundedCornersTransformation(128, 0, RoundedCornersTransformation.CornerType.ALL));Glide.with(this).load(url).apply(bitmapTransform(multi)).into(imageView);
更多效果可以去项目Github源码中查看
https://github.com/wasabeef/glide-transformations
这篇关于Glide-更多图片变换,glide-transformations的使用(六)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!