how to force a photo into black and white

后端 未结 3 1342
一向
一向 2021-01-25 23:01

So if the user takes a photo in color, I want to save it as a black and white picture.

Could someone help me?

3条回答
  •  执笔经年
    2021-01-25 23:35

    cameraParams.getSupportedColorEffect(); and check if it contains Parameters.EFFECT_MONO then set

    cameraParams.setColorEffect(android.hardware.Camera.Parameters.EFFECT_MONO);
    
    mCamera.setParameters(cameraParams);
    

提交回复
热议问题