** Picasso





사용 방법 : 


Picasso

.with(context)

.load(imgUrl)

.transform(new BlurTransformation(context, mRadius))

.into( ... );




** Glide





사용법 : 


RequestOptions options = new RequestOptions();

options.centerCrop();

options.override(width, height);

options.transform(new BlurTransformation(context, mRadius));


Glide.with(context).setDefaultRequestOptions(options).asBitmap().load(imgUrl).into( ... );






** 참고

http://dwfox.tistory.com/48

https://github.com/wasabeef/glide-transformations/blob/master/transformations/src/main/java/jp/wasabeef/glide/transformations/BlurTransformation.java#L74

+ Recent posts