BarcodeDetector.getSupportedFormats()
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
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
| Specification |
|---|
| Accelerated Shape Detection in Images # dom-barcodedetector-getsupportedformats |
Browser compatibility
BCD tables only load in the browser