zxing

Unable to decode Aztec barcode

Unable to decode Aztec barcode Question: I’m trying to decode an Aztec barcode using the following script: import zxing reader = zxing.BarCodeReader() barcode = reader.decode("test.png") print(barcode) Here is the input image: Following is the output: BarCode(raw=None, parsed=None, path=’/Users/dhiwatdg/Desktop/test.png’, format=None, type=None, points=None) I’m sure it a valid Aztec barcode. Not the script is not able to …

Total answers: 2

How to decode a QR-code image in (preferably pure) Python?

How to decode a QR-code image in (preferably pure) Python? Question: TL;DR: I need a way to decode a QR-code from an image file using (preferable pure) Python. I’ve got a jpg file with a QR-code which I want to decode using Python. I’ve found a couple libraries which claim to do this: PyQRCode (website …

Total answers: 9