-
Notifications
You must be signed in to change notification settings - Fork 190
Closed
Description
from PIL import Image
from pyzbar.pyzbar import ZBarSymbol, decode
img = Image.open('unknown.png')
output = decode(img, symbols=[ZBarSymbol.QRCODE])
print(output)
output in code:
[Decoded(data=b'PK\x03\x04\x14', type='QRCODE', rect=Rect(left=12, top=13, width=604, height=605), polygon=[Point(x=12, y=14), Point(x=12, y=618), Point(x=614, y=616), Point(x=616, y=13)])]
but this is incomplete data
when i am trying to decode on https://zxing.org/w/decode.jspx
this is what i want in bytes in python. but code seems cant parse the all data.
Metadata
Metadata
Assignees
Labels
No labels

