Reputation: 425
I need to draw blur on image view and UnBlur also. I tried with RenderScript but I got full image blur,can any one help me regarding libraries or coding.Like below image Thank you, enter image description here
Upvotes: 0
Views: 397
Reputation: 9170
This is a nice blurring library - https://github.com/500px/500px-android-blur
If you write a blurring function yourself, crop only the area you need by creating a new bitmap - Bitmap.createBitmap(sourceBitmap, startX, startY, width, height)
Upvotes: 1