###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?
###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 BarCodeReaderfpath = r"14767.png"reader = BarCodeReader()qrcode = reader.decode(fpath)print(qrcode.raw)Why it is returning empty string?