Slide 69
Slide 69 text
const detector = new BarcodeDetector();
detector.detect(imageSource).then(barcodes => {
// [ {
// boundingBox: { ... },
// rawValue: 'https://arnellebalane.com/',
// cornerPoints: [
// { x: 0, y: 0 },
// { x: 100, y: 0 },
// { x: 100, y: 100 },
// { x: 0, y: 100 },
// ]
// } ]
});