Parameter that controls camera brightness on android

2

I imagine it's some parameter in Camera.getParameters (), but I'm not really sure what to look for. I'm going to try one by one, but if anyone knows which one it's going to save me a lot of time.

    
asked by anonymous 25.11.2015 / 23:06

1 answer

1

Using these camera parameters:

setWhiteBalance () The value that this method receives can be found in getWhiteBalance ( )

setExposureCompensation () The value this method receives must be a valid value between getMinExposureCompensation () (inclusive) and getMaxExposureCompensation () (inclusive). Zero means it should not be exposure should not be adjusted.

    
26.11.2015 / 02:35