Since Android 2.0 onwards, the camera API has supports few ColorEffect(s).

The list could be found here, from Effect Aqua onwards. http://developer.android.com/reference/android/hardware/Camera.Parameters.html#EFFECT_AQUA

The effect could be implemented as follows:

Camera.Parameters parameters = camera.getParameters();
parameters.setColorEffect(Camera.Parameters.EFFECT_AQUA);
camera.setParameters(parameters);

Apart from those supported effects, I am thinking to introduce Lomo or Retro effect in my application. Can anyone give some guidance on how to provide extra effects for the camera preview?

Code samples will be greatly appreciated.

Thanks.

link|improve this question

57% accept rate
In case anyone else stumbles upon this question in the future, the OP is not trying to add effects to the setColorEffect() roster. Rather, the OP is trying to manipulate preview images and apply hand-coded effects as part of the preview images getting on the screen. – CommonsWare Apr 25 '11 at 12:30
feedback

1 Answer

Camera preview formats discussion from android-developers group.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.