BarcodeDetector.detect() - 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.
The detect()
method of the BarcodeDetector
interface returns a Promise
which fulfills with an Array
of detected barcodes within an image.
Syntax
var detectedBarcode = BarcodeDetector.detect(ImageBitmapSource);
Parameters
- image
- Receives an
ImageBitmapSource
as a parameter. This can be an element, aBlob
of type image or anImageData
object.
Return value
Returns a Promise
which fulfills with an array of detectedBarcode
objects with the following properties:
boundingBox
: ADOMRectReadOnly
, which returns the dimensions of a rectangle representing the extent of a detected barcode, aligned with the image.cornerPoints
: The x and y co-ordinates of the four corner points of the detected barcode relative to the image, starting with the top left and working clockwise. This may not be square due to perspective distortions within the image.format
: The detected barcode format. (For a full list of formats see theBarcode Detection API overview page
).rawValue
: AString
decoded from the barcode data.
Exceptions
TypeError
- No parameter is specified or the
type
is not that of anImageBitmapSource
.
Examples
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 The definition of 'BarcodeDetector.detect()' in that specification. | Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论