CameraControl.setExposureCompensation()

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

Summary

This method is used to change the exposure compensation value.

Acceptable values for the exposure compensation range from the CameraCapabilities.minExposureCompensation value to the CameraCapabilities.maxExposureCompensation value in steps equal to the value of CameraCapabilities.stepExposureCompensation; invalid values will be rounded to the nearest valid value.

Syntax

JavaScript
CameraControl.setExposureCompensation([compensation]);

Parameters

compensation Optional
The new value for the exposure compensation. This parameter is optional; if it's missing, the camera will use automatic exposure compensation.

Example

This example gets the first camera and sets the exposure compensation to the middle of the allowed range.

JavaScript
var options  = {
  camera: navigator.mozCameras.getListOfCameras()[0]
};
 
function onAccessCamera( camera ) {
  var min  = camera.capabilities.minExposureCompensation;
  var max  = camera.capabilities.maxExposureCompensation;
  var step = camera.capabilities.stepExposureCompensation;

  var mid  = Math.round((max - min) / step / 2) * step;

  camera.setExposureCompensation(mid);
};
 
navigator.mozCameras.getCamera(options, onAccessCamera);

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/setexposurecompensation

API B2G Camera camera DOM DOM Reference Firefox OS Graphics Method Reference Référence WebAPI