Skip to content Skip to sidebar Skip to footer

How To Blur The Specific Part Of Image Without Using Render Script,as My Minsdk Is 14.

I want to blur the specific part of image in android without using Render Script. I am using minSdkVersion 14. I want to make image blur dynamically like image processing apps do.

Solution 1:

You should first blur the bitmap:

Android: fast bitmap blur?

Then you have to apply image masking to that bitmap by using transparent in the middle.

Masking(crop) image in frame

Then you should put this bitmap as drawale to your movable imageview.

Post a Comment for "How To Blur The Specific Part Of Image Without Using Render Script,as My Minsdk Is 14."