0

Hi I am trying to capture images in black and white, while I was searching the google I notice that the android camera has a parameter like the mono effect.

I used like this:

Parameters param = camera.getParameters();
param.setColorEffect(Camera.Parameters.EFFECT_WHITEBOARD);
cameraObject.setParameters(param);

But there is a problem, this is not Black and White, there are grey tones also, I just want two colors ! The Black and the White ! Is there any way to do it? How?

Thanks alot in advance !

TiagoM
  • 3,458
  • 4
  • 42
  • 83

2 Answers2

0

I have found it

Take monochrome picture (black and white) with Android

If someone has a better/faster solution please tell me :)

Thanks alot

Community
  • 1
  • 1
TiagoM
  • 3,458
  • 4
  • 42
  • 83
0

It is called Camera.Parameters.EFFECT_MONO for "monochrome" which is the technical term for "black and white".

Automatico
  • 12,420
  • 9
  • 82
  • 110