Barcode Detection API - Web APIs 编辑
Draft
This page is not complete.
Secure context
This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note:
This feature is available in Web Workers.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.
Detection is achieved through the detect()
method, which takes an image object; either an element, a Blob
, ImageData
or a CanvasImageSource
. Optional parameters can be passed to the BarcodeDetector
constructor to provide hints on which barcode formats to detect.
Supported barcode formats
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 centre, 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.
Interfaces
BarcodeDetector
- 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.
// check compatibility
if (!('BarcodeDetector' in window)) {
console.log('Barcode Detector is not supported by this browser.');
} else {
console.log('Barcode Detector supported!');
// create new detector
var barcodeDetector = new BarcodeDetector({formats: ['code_39', 'codabar', 'ean_13']});
}
Getting Supported Formats
The following example calls the getSupportFormat()
method and logs the results to the console.
// check supported types
BarcodeDetector.getSupportedFormats()
.then(formats => {
supportedFormats.forEach(format => console.log(format));
});
Detect Barcodes
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.
barcodeDetector.detect(imageEl)
.then(barcodes => {
barcodes.forEach(barcode => console.log(barcode.rawData));
}
.catch(err => {
console.log(err);
})
Specifications
Specification | Status | Comment |
---|---|---|
Accelerated Shape Detection in Images | Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论