CameraControl.focusDistanceNear

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

Summary

The focusDistanceNear property value is a distance in meters used with CameraControl.focusDistanceFar to define the image's depth of field.

Syntax

JavaScript
var max = instanceOfCameraControl.<code>focusDistanceFar</code>

Value

Return a number representing a distance in meters.

Example

JavaScript
var options = {
  camera: navigator.mozCameras.getListOfCameras()[0]
};
 
function onSuccess( camera ) {
  var max = camera.focusDistanceFar,
      min = camera.focusDistanceNear;

  console.log("The image's depth of field is: " + (max-min) + "m");
};

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

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