CameraControl.effect

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

JavaScript
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

JavaScript
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

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

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