一行代码实现高斯模糊

版权声明:橘子丶 https://blog.csdn.net/qq_43573190/article/details/87116056
  //高斯模糊
  implementation 'com.yutianran.maven:super-adapter:1.0.0'
  implementation 'jp.wasabeef:glide-transformations:2.0.2'
 Glide.with(this).load(url).bitmapTransform(new BlurTransformation(this,25)).into(sdvIcon);

需要的参数很分别是

上下文对象
图片url
上下文对象,虚化数值
imageView控件

猜你喜欢

转载自blog.csdn.net/qq_43573190/article/details/87116056