-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ZXing does not decode some QR images #27
Comments
Good question. If I use BarCode(raw='https://ldtax.gov.bd/ldtax-holdings/individual-rashid-print-offline/M2ZRY085bkljUkc4a3c1K3JrNlFwUT09',
parsed='https://ldtax.gov.bd/ldtax-holdings/individual-rashid-print-offline/M2ZRY085bkljUkc4a3c1K3JrNlFwUT09',
path='/tmp/235306398-552ee662-2fd3-4cb2-b7a4-0feb00ff50f1.png',
format='QR_CODE', type='URI', points=[]) I wonder if this is a regression in ZXing? What is your I note that the ZXing online decoder (https://zxing.org/w/decode.jspx) also fails to correctly decode this QR code. |
Possible workaround for some seemingly-sane barcodes that ZXing fails to decode? (ping #27)
I've also tested with ZXing 3.4.1, and get the same results. Hmmm. I've been using |
Possible workaround for some seemingly-sane barcodes that ZXing fails to decode? (ping #27)
###Bug Reports
I am using zxing module of python to decode QR images like attached below. But it returns empty string.
I am using code like below-
from zxing import BarCodeReader
fpath = r"14767.png"
reader = BarCodeReader()
qrcode = reader.decode(fpath)
print(qrcode.raw)
Why it is returning empty string?
The text was updated successfully, but these errors were encountered: