用Python解码21x21 QR码

时间:2016-03-23 12:55:40

标签: python python-imaging-library qr-code

我正在尝试解码尺寸为21x21像素的版本1 QR码。目前,我正在使用zbarlight模块,但遗憾的是,我无法使用它解码QR codes(点击示例链接)。

这是我的代码:

import zbarlight

with open(file_name, 'rb') as image_file:
    image = Image.open(image_file)  
    image.load()
    codes = zbarlight.scan_codes('qrcode', image)
    print('QR codes: %s' % codes)

我尝试了几个QR码,但我总是得到这个输出:

  

QR码:无

0 个答案:

没有答案