zxing-js / browser

ZXing for JS's browser layer with decoding implementations for browser.
MIT License
213 stars 43 forks source link

Unable to scan Barcodes in browser #98

Closed Abhi0806 closed 2 years ago

Abhi0806 commented 2 years ago

Any idea why ZXing library is only reading the QR codes but not 1D/2D Barcodes ? Below is the logic I am using .

_getMultiCodeDecoder: function () { if (!this._oMultiCodeDecoder) { this._oMultiCodeDecoder = new ZXing.BrowserMultiFormatReader(new Map([ ['TRY_HARDER', this.getTryHarder()] ])); } return this._oMultiCodeDecoder; },

Thanks, Abhi