wasabeef / Blurry

Blurry is an easy blur library for Android
Apache License 2.0
5.57k stars 602 forks source link

How to create black and white blur using Blurry #82

Open djnotes opened 5 years ago

djnotes commented 5 years ago

I'm trying to create black and white blur effect using this library. For that purpose, I applied a gray color filter as follows, but it does not create a blurred black and white image.

Blurry.with(mContext).color(Color.argb(0, 246, 247, 244)).from(bitmap).into(mImageView);
PaulWoitaschek commented 5 years ago

Set a ColorFilter on the view you want to blur itself.