2

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. Dynamically means there should be one movable view on top of image and inside that view, Image will be clear and other than that it should be blurred.

Deepak
  • 121
  • 12

1 Answers1

2

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.

Community
  • 1
  • 1
Gunhan
  • 6,807
  • 3
  • 43
  • 37