The Barcode Detection API detects linear and two-dimensional barcodes in images.
Concepts and usage
Support for barcode recognition within web apps unlocks a variety of use cases through supported barcode formats. QR codes can be used for online payments, web navigation or establishing social media connections, Aztec codes can be used to scan boarding passes and shopping apps can use EAN or UPC barcodes to compare prices of physical items.
The Barcode Detection API supports the following barcode formats:
Format
Description
Image
aztec
A square two-dimensional matrix following iso24778 and with a square bullseye pattern at their center, thus resembling an Aztec pyramid. Does not require a surrounding blank zone.
code_128
A linear (one-dimensional), bidirectionally-decodable, self-checking barcode following iso15417 and able to encode all 128 characters of ASCII (hence the naming).
code_39
A linear (one-dimensional), self-checking barcode following iso16388. It is a discrete and variable-length barcode type.
code_93
A linear, continuous symbology with a variable length following bc5. It offers a larger information density than Code 128 and the visually similar Code 39. Code 93 is used primarily by Canada Post to encode supplementary delivery information.
codabar
A linear barcode representing characters 0-9, A-D and symbols - . $ / +
data_matrix
An orientation-independent two-dimensional barcode composed of black and white modules arranged in either a square or rectangular pattern following iso16022.
ean_13
A linear barcode based on the UPC-A standard and defined in iso15420.
ean_8
A linear barcode defined in iso15420 and derived from EAN-13.
itf
A continuous, self-checking, bidirectionally decodable barcode. It will always encode 14 digits.
pdf417
A continuous two-dimensional barcode symbology format with multiple rows and columns. It's bi-directionally decodable and uses the iso15438 standard.
qr_code
A two-dimensional barcode that uses the iso18004 standard. The information encoded can be text, URL or other data.
upc_a
One of the most common linear barcode types and is widely applied to retail in the United States. Defined in iso15420, it represents digits by strips of bars and spaces, each digit being associated to a unique pattern of 2 bars and 2 spaces, both of variable width. UPC-A can encode 12 digits that are uniquely assigned to each trade item, and it's technically a subset of EAN-13 (UPC-A codes are represented in EAN-13 with the first character set to 0).
upc_e
A variation of UPC-A defined in iso15420, compressing out unnecessary zeros for a more compact barcode.
unknown
This value is used by the platform to signify that it does not know or specify which barcode format is being detected or supported.
You can check for formats supported by the user agent via the getSupportedFormats() method.
The BarcodeDetector interface of the Barcode Detection API allows detection of linear and two dimensional barcodes in images.
Examples
Creating A Detector
This example tests for browser compatibility and creates a new barcode detector object, with specified supported formats.
js
// check compatibilityif(!("BarcodeDetector"in window)){
console.log("Barcode Detector is not supported by this browser.");}else{
console.log("Barcode Detector supported!");// create new detectorconst barcodeDetector =newBarcodeDetector({formats:["code_39","codabar","ean_13"],});}
Getting Supported Formats
The following example calls the getSupportedFormats() method and logs the results to the console.
This example uses the detect() method to detect the barcodes within the given image. These are iterated over and the barcode data is logged to the console.