views:

98

answers:

3

I am looking for a way to change the light sensitivity of my Evo 4G camerea. I know it is not the camera's shutter speed because it is a digital camera. The next most relevant aspect is the ISO setting, but the Android SDK does not have a way to manipulate it. Does any one know an alternative? i.e scene mode, exposure or effects

**parameter.set("iso", int) sets the iso.

Does anyone have the run down on what scene mode values represents?

+1  A: 

Try Camera.Parameter's exposure compensation calls.

Yoni Samlan
+1  A: 

I am afraid you can only change parameters described here:

http://developer.android.com/reference/android/hardware/Camera.Parameters.html

radek-k
A: 

Thanks for the input. I have looked over those pages numerous times. I was looking for a function similar to parameter.set("iso", int) because this function was successful in changing the iso setting. The camera does not have aperture as a setting. Maybe I can manipulate some firmware files.

Will