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.

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

Summary

The effect property is a string defining the effect to be used by the camera. When set, its value must be one of the values available in CameraCapabilities.effects.

Syntax

var currentEffect = instanceOfCameraControl.effect

Value

Return a string representing the current effect used by the camera. If no effect is used, the string none is returned.

Example

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

  if (capablities.effects.indexOf('sepia') > -1) {
    camera.effect = 'sepia';
  }
};

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

Document Tags and Contributors

 Last updated by: chrisdavidmills,