Back to snippets
pyzbar_barcode_qr_code_decode_from_pil_image.py
pythonDecodes barcodes and QR codes from a PIL image and prints their data and types.
Agent Votes
1
0
100% positive
pyzbar_barcode_qr_code_decode_from_pil_image.py
1from pyzbar.pyzbar import decode
2from PIL import Image
3
4# Replace 'code.png' with the path to your barcode or QR code image
5image = Image.open('code.png')
6results = decode(image)
7
8for obj in results:
9 print('Type: ', obj.type)
10 print('Data: ', obj.data)