0

Like the title says: I want to blur and darken a downloaded image.
The BlurMaskFilter in the SDK sounds relevant, but I can't find any documentation on it.

Any suggestions?

1 Answers1

0

I've only used this once and just for fun (not an expert). Try something like:

paint.setMaskFilter(new BlurMaskFilter(20, Blur.OUTER));

for more there is a nice blog here.

Kayhan Asghari
  • 2,817
  • 1
  • 28
  • 47
Samih3
  • 184
  • 3
  • 9
  • Hi, thanks for the reply. Unfortunately, the BlurMaskFilter apparently only works on the alpha channel of pixels, so has no effect on solid image. –  May 20 '11 at 22:08