0

if i capture any image from android camera ,, how can i perform different -2 type of effect on image? Effect should be like "sepia", "Old cam" etc... These effect must be perform after capturing the image...

Zelimir
  • 11,008
  • 6
  • 50
  • 45
Andy
  • 5,379
  • 7
  • 39
  • 53
  • 1
    possible [duplicate](http://stackoverflow.com/questions/4851629/how-to-apply-effects-to-camera-images) – dave.c Feb 01 '11 at 13:44
  • 2
    Didn't you just ask this the other day and accept an answer for it? http://stackoverflow.com/questions/4851629/how-to-apply-effects-to-camera-images – Will Tate Feb 01 '11 at 13:45
  • This question is little bit of different coz here i have to apply effect after capturing the photo... – Andy Feb 04 '11 at 12:03

1 Answers1

0

AFAIK, Android does not offer dedicated classes for this. You can do that either:

  • in Java code, use android.graphics.Bitmap and accompanied classes for color filtering, blur, emboss and xfer mode.
  • use NDK. Actual image processing is done in C++ (maybe you already have some libraries for this), only final result is delivered to Android for display
Zelimir
  • 11,008
  • 6
  • 50
  • 45