BarcodeDetector.getSupportedFormats()

Draft: This page is not complete.

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

The getSupportedFormats() static method of the BarcodeDetector interface returns a Promise which fulfills with an Array of supported barcode format types.

Syntax

var supportedFormats = BarcodeDetector.getSupportedFormats();

Parameters

This method receives no parameters.

Return value

An Array of supported barcode format types.

Exceptions

No exceptions are thrown.

Examples

The following example calls the getSupportFormat() static method and logs the results to the console.

// check supported types
BarcodeDetector.getSupportedFormats()
  .then(supportedFormats => {
    supportedFormats.forEach(format => console.log(format));
  });

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
getSupportedFormats
83
Supported on macOS only.
83
Supported on macOS only.
No
No
Yes
Supported on macOS only.
No
83
83
No
Yes
No
13.0

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/BarcodeDetector/getSupportedFormats