使用python从左到右解码二维码

时间:2018-07-05 15:54:37

标签: python linux python-3.x qr-code zbar

我有一个带有几个qr码的png,基本上看起来像这样

enter image description here

我使用zbarlight来解码二维码。

from PIL import Image
import zbarlight

file_path = './tests/qr_codes.png'
with open(file_path, 'rb') as image_file:
    image = Image.open(image_file)
    image.load()

codes = zbarlight.scan_codes(['qrcode'], image)
print('QR codes: %s' % codes)

我的目标是从左到右解码二维码,因此列表应如下所示:url1,url2,url3,url4,url5,ulr6。

问题:在我看来,zbarlight扫描过程的结果(列表)像一个随机顺序。有没有一种方法可以从左向右扫描?

1 个答案:

答案 0 :(得分:1)

我在Windows上,目前无法在linux上进行测试,但这似乎可以正常工作。

import sys, os
try:
    from pyzbar.pyzbar import decode, ZBarSymbol
except:
    cmd = ('py -m pip install "pyzbar"')
    os.system(cmd)
    from pyzbar.pyzbar import decode, ZBarSymbol

try:
    from PIL import Image
except:
    cmd = ('py -m pip install "Pillow"')
    os.system(cmd)
    from PIL import Image

decoded = decode(Image.open("C:/Temp/13AZQ.png"), symbols=[ZBarSymbol.QRCODE])
qr_dic = {}
for qr in decoded:
    x = qr[2][0] # The Left position of the QR code
    qr_dic[x] = qr[0] # The Data stored in the QR code

for qr in sorted(qr_dic.keys()):
    print(qr_dic[qr])

输出:

b'url1'
b'url2'
b'url3'
b'url4'
b'url5'