CameraControl.exposureCompensation

This API is available on Firefox OS for privileged or certified applications only.

Summary

The exposureCompensation property value is a number used to compensate the camera exposure.

This property is read-only; to change the exposure, you need to call the CameraControl.setExposureCompensation() method.

Acceptable values for this property must range from the value of the CameraCapabilities.minExposureCompensation property to the value of the CameraCapabilities.maxExposureCompensation property in steps of the CameraCapabilities.stepExposureCompensation property.

Invalid values are rounded to the nearest valid value.

Syntax

JavaScript
var exposure = instanceOfCameraControl.exposureCompensation

Value

Return a number representing the current exposure compensation.

Example

JavaScript
var options = {
  camera: navigator.mozCameras.getListOfCameras()[0]
};
 
function onSuccess( camera ) {
  var exposure = camera.exposureCompensation;

  console.log('Exposure compensation: ' + exposure);
};

navigator.mozCameras.getCamera(options, onSuccess)

Specification

Not part of any specification; however, this API should be removed when the WebRTC Capture and Stream API has been implemented.

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/cameracontrol/exposurecompensation

API B2G Camera camera Firefox OS Graphics JavaScript Property Reference Référence WebAPI