Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

CameraCapabilities.maxExposureCompensation

No estándar
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

This API is available on Firefox OS for internal applications only.

Resumen

La propiedad maxExposureCompensation es un número que define el valor máximo de compensación de exposición soportado.

Sintaxis

var max = instanceOfCameraControl.capabilities.maxExposureCompensation

Valor

Devuelve un número.

Ejemplo

var options = {
  camera: navigator.mozCameras.getListOfCameras()[0]
};
 
function onSuccess(camera) {
  console.log(camera.capabilities.maxExposureCompensation);
};

navigator.mozCameras.getCamera(options, onSuccess)

Especificación

No forma parte de ninguna especificación; No obstante, esta API debería ser eliminada cuando la WebRTC Capture and Stream API haya sido implementada.

Ver también

Etiquetas y colaboradores del documento

 Colaboradores en esta página: fscholz, AshfaqHossain, maedca, voylinux
 Última actualización por: AshfaqHossain,