4.0.1 • Published 5 months ago

@georapbox/capture-photo-element v4.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

npm version npm license

<capture-photo>

A custom element that implements the MediaDevices.getUserMedia() method of the MediaDevices interface to capture a photo in the browser.

API documentation Demo

Install

$ npm install --save @georapbox/capture-photo-element

Usage

Script

import { CapturePhoto } from './node_modules/@georapbox/capture-photo-element/dist/capture-photo.js';

// Manually define the element.
CapturePhoto.defineCustomElement();

Alternatively, you can import the automatically defined custom element.

import './node_modules/@georapbox/capture-photo-element/dist/capture-photo-defined.js';

Markup

<capture-photo facing-mode="environment" camera-resolution="320x240"></capture-photo>

Style

By default, the component is style-free to remain as less opinionated as possible. However, you can style the various elements of the component using the ::part() CSS pseudo-elements provided for this purpose. Below are demonstrated all available parts for styling.

capture-photo::part(video) {
  /* The video element */
}

capture-photo::part(actions-container) {
  /* Actions container element - where actions buttons are placed */
}

capture-photo::part(capture-button) {
  /* The button responsible to take picture */
}

capture-photo::part(facing-mode-button) {
  /* The button responsible to change camera's facing mode */
}

capture-photo::part(output-container) {
  /* Output container - where the final output photo is placed */  
}

capture-photo::part(output-image) {
  /* The generated photo */
}

API

Properties

NameReflectsTypeRequiredDefaultDescription
autoPlayauto-playBoolean-falseDetermines if the video stream should start playing automatically when the component is connected to the DOM. If set to false, you can start the video stream manually using startVideoStream() method.
noImageno-imageBoolean-falseDetermines if the generated image is added in DOM. Use it if you don't need to display the generated image or if you need to display it somewhere else in DOM.
facingModefacing-mode1String-"user"The preferred camera to be used if the camera hardware supports more than one (mostly for mobile devices). Available values: "user" and "environment" for the front and the rear camera respectively.
cameraResolutioncamera-resolution1String-""Defines the ideal camera resolution constraint. It must be of the format [width]x[height], eg 640x480. The browser will try to honour this, but may return other resolutions if an exact match is not available. You can access the min & max supported values for width and height, using getTrackCapabilities().width and getTrackCapabilities().height respectively.
pan1Number-0Defines the camera's pan level if supported by the camera hardware. You can access the min & max supported values for pan level, using getTrackCapabilities().pan.
tilt1Number-0Defines the camera's tilt level if supported by the camera hardware. You can access the min & max supported values for tilt level, using getTrackCapabilities().tilt.
zoom1Number-1Defines the camera's zoom level if supported by the camera hardware. You can access the min & max supported values for zoom level, using getTrackCapabilities().zoom.
loadingBoolean-falseReadonly. Indicates if the component is ready for interaction. It is used internally but is also exposed as a readonly property for purposes such as styling, etc.
calculateFileSizecalculate-file-sizeBoolean-falseIndicates if the component should calculate the file size of the generated image. If set to true the file size (in bytes) will be included in the event detail object when the capture-photo:success event is fired. The reason for not calculating the file size by default is that it might be an "expensive" operation, especially for large images, therefore it is recommended to set this property to true only if you need the file size.

1 Changing any of these properties/attributes may not always guarantee the desired result, because they all depend on the camera hardware support. For example, zoom=3 might not result to the camera to zoom if the camera hardware does not support zooming. Using getTrackCapabilities() and getTrackSettings() can prove helpful to check the campera hardware support.

Slots

NameDescription
capture-buttonOverride the default capture photo button with your own.
capture-button-contentOverride the default content of the capture photo button with your own content.
facing-mode-buttonOverride the default facing mode button with your own. If facingMode is not supported in constrainable properties for the current MediaStreamTrack, the slot is hidden.
facing-mode-button-contentOverride the default content of the facing mode button with your own content.
actionsSlot to add content inside the actions container element.
(default)Un-named slot to add content inside the component.

Slots usage examples

Override the default buttons with your own elements
<capture-photo>
  <button slot="capture-button" type="button">
    Take picture
  </button>
  
  <a slot="facing-mode-button" href="#" role="button">
    Change camera
  </a>
</capture-photo>
Override just the content of the default buttons
<capture-photo>
  <span slot="capture-button-content">Take picture</span>
  <span slot="facing-mode-button-content">Change camera</span>
</capture-photo>

CSS Parts

NameDescription
videoThe video element.
actions-containerThe action buttons container element.
capture-buttonThe capture photo button.
facing-mode-buttonThe facing mode button.
output-containerThe output container element.
output-imageThe output image element.

Methods

NameTypeDescriptionArguments
defineCustomElementStaticDefines/registers the custom element with the name provided. If no name is provided, the default name is used. The method checks if the element is already defined, hence will skip trying to redefine it.elementName='capture-photo'
isSupportedStaticReturns true if MediaDevices.getUserMedia() is supported by the platform, otherwise returns false.-
capture1InstanceCaptures a photo using the element's properties.-
getSupportedConstraints1InstanceReturns an object based on the MediaTrackSupportedConstraints dictionary, whose member fields each specify one of the constrainable properties the user agent understands. Read more...-
getTrackCapabilities1InstanceReturns a MediaTrackCapabilities object which specifies the values or range of values which each constrainable property, based upon the platform and user agent. Read more...-
getTrackSettings1InstanceReturns a MediaTrackSettings object containing the current values of each of the constrainable properties for the current MediaStreamTrack. Read more...-
startVideoStream1InstanceStarts the video stream. Use this method to start the video stream manually, if autoPlay is set to false or if you want to restart the video stream after it has been previously stopped by calling stopVideoStream() method.-
stopVideoStream1InstanceStops the video stream and releases the camera. Use this method if you want to stop the video stream manually.-

1 Instance methods are only available after the component has been defined. To ensure the component is defined, you can use whenDefined method of the CustomElementRegistry interface, eg customElements.whenDefined('capture-photo').then(() => { /* call methods here */ });

Events

NameDescriptionEvent Detail
capture-photo:video-playEmitted when camera's video stream starts playing. It is triggered during initial load, or when facing mode or camera resolution mode change are requested.{ video: HTMLVideoElement }
capture-photo:successEmitted when a photo is captured successfully.{ dataURI: string, width: number, height: number, size?: number }
capture-photo:errorEmitted when an error occurs. An error might occur because camera permission is denied, a photo cannot be captured for any reason, the video stream cannot start for any reason, etc.{ error: DOMException }

Changelog

For API updates and breaking changes, check the CHANGELOG.

License

The MIT License (MIT)

4.0.1

5 months ago

4.0.0

5 months ago

3.2.1

1 year ago

3.2.0

1 year ago

3.1.0

1 year ago

3.0.0

1 year ago

1.3.1

2 years ago

1.3.0

2 years ago

2.0.0

1 year ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.0

2 years ago

1.2.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago