Is it possible to take pictures in black and white using camera intent ? I tried camera that taken color pictures.
Asked
Active
Viewed 1,818 times
2
-
You can for sure convert a color image to a grayscale version. – Phantômaxx Dec 22 '14 at 10:14
1 Answers
1
I don't think it can be achieved using an intent.
If you want black and white, you'll have to use
setColorEffect(android.hardware.Camera.Parameters.EFFECT_MONO);
but of course, this isn't using an intent.
You could take a look here explaining algorithms to take a monochrome picture. But it's a longer way.

Community
- 1
- 1

Prasanth Louis
- 4,658
- 2
- 34
- 47