Glide4.9.0使用高斯模糊

//3.7.0设置圆形图像

  Glide.with(this).load(R.drawable.timg)
            .bitmapTransform(new CropCircleTransformation(this))
            .into(IVhead);

//4.9.0设置圆形头像

 Glide.with(head.getContext()).asBitmap().load(R.drawable.default_img).transform(new CircleCrop()).into(head);

//3.7.0设置背景磨砂效果

Glide.with(this).load(R.drawable.timg)
            .bitmapTransform(new BlurTransformation(this, 25), new CenterCrop(this))
            .into(IVbackground);

//4.9.0设置背景磨砂效果

  Glide.with(background.getContext()).asBitmap().load(R.drawable.default_img).transform(new BlurTransformation(50,1)).into(background);

你可能感兴趣的:(Glide4.9.0使用高斯模糊)