如何在(最好是纯粹的)Python中解码QR码图像?

问题描述 投票:63回答:3

TL; DR:我需要一种方法来解码使用(最好是纯粹的)Python的图像文件中的QR码。

我有一个带有QR码的jpg文件,我想用Python解码。我找到了几个声称这样做的图书馆:

PyQRCode(website here)据说可以通过简单地提供这样的路径来解码图像中的qr代码:

import sys, qrcode
d = qrcode.Decoder()
if d.decode('out.png'):
    print 'result: ' + d.result
else:
    print 'error: ' + d.error

所以我只是使用sudo pip install pyqrcode安装它。我对上面的示例代码感到奇怪的是,它只导入qrcode(而不是pyqrcode)因为我认为qrcode指的是只能生成qr代码图像的this library,这让我很困惑。所以我用pyqrcodeqrcode尝试了上面的代码,但是在第二行都说AttributeError: 'module' object has no attribute 'Decoder'失败了。此外,the website指的是Ubuntu 8.10(超过6年前推出),我找不到它的公共(git或其他)存储库来检查最新的提交。所以我转到了下一个图书馆:

ZBar(website here)声称是"an open source software suite for reading bar codes from various sources, such as image files."因此我尝试在运行sudo pip install zbar的Mac OSX上安装它。这与error: command 'cc' failed with exit status 1失败了。我试着在this SO question的答案中提出建议,但我似乎无法解决它。所以我决定继续前进:

QRTools,根据this blogpost可以使用以下代码轻松解码图像:

from qrtools import QR
myCode = QR(filename=u"/home/psutton/Documents/Python/qrcodes/qrcode.png")
if myCode.decode():
  print myCode.data
  print myCode.data_type
  print myCode.data_to_string()

所以我尝试使用sudo pip install qrtools安装它,它找不到任何东西。我也尝试过python-qrtoolsqr-toolspython-qrtools以及其他几种组合,但遗憾的是无济于事。我想它是指this repo,它说它是基于ZBar(见上文)。虽然我想在Heroku上运行我的代码(因此更喜欢纯Python解决方案),但我成功地将它安装在Linux机器上(使用sudo apt-get install python-qrtools)并尝试运行它:

from qrtools import QR
c = QR(filename='/home/kramer65/qrcode.jpg')
c.data  # prints u'NULL'
c.data_type  # prints u'text'
c.data_to_string()  # prints '\xef\xbb\xbfNULL' where I expect an int (being `1234567890`)

虽然这似乎解码了它,它似乎没有正确地做到这一点。它还需要ZBar,因此不是纯Python。所以我决定找另一个图书馆。

PyXing(website here)应该是流行的Java ZXing library的Python端口,但是最初的和唯一的提交是6年,并且项目没有任何自述文件或文档。

其余的我发现了一些qr编码器(不是解码器)和一些可以为你解码的API端点。由于我不喜欢这个服务依赖于其他API端点,我希望保持解码本地。

总结一下;谁能知道如何从(优选纯粹的)Python中的图像中解码QR码?欢迎所有提示!

python decode qr-code zxing zbar
3个回答
85
投票

您可以使用qrtools尝试以下步骤和代码:

  • 创建一个qrcode文件(如果尚未存在) 我使用pyqrcode这样做,可以使用pip install pyqrcode安装 然后使用代码: >>> import pyqrcode >>> qr = pyqrcode.create("HORN O.K. PLEASE.") >>> qr.png("horn.png", scale=6)
  • 使用qrcode解码现有的qrtools文件 使用qrtools安装sudo apt-get install python-qrtools 现在在python提示符下使用以下代码 >>> import qrtools >>> qr = qrtools.QR() >>> qr.decode("horn.png") >>> print qr.data u'HORN O.K. PLEASE.'

以下是单次运行中的完整代码:

In [2]: import pyqrcode
In [3]: qr = pyqrcode.create("HORN O.K. PLEASE.")
In [4]: qr.png("horn.png", scale=6)
In [5]: import qrtools
In [6]: qr = qrtools.QR()
In [7]: qr.decode("horn.png")
Out[7]: True
In [8]: print qr.data
HORN O.K. PLEASE.

注意事项

  • 您可能需要使用PyPNG安装pip install pypng才能使用pyqrcode
  • 如果你安装了PIL,你可能会得到IOError: decoder zip not available。在这种情况下,try uninstalling and reinstalling PIL使用: pip uninstall PIL pip install PIL
  • 如果这不起作用,请尝试使用Pillow pip uninstall PIL pip install pillow

4
投票

以下代码适用于我:

brew install zbar
pip install pyqrcode
pip install pyzbar

对于QR码图像创建:

import pyqrcode
qr = pyqrcode.create("test1")
qr.png("test1.png", scale=6)

对于QR码解码:

from PIL import Image
from pyzbar.pyzbar import decode
data = decode(Image.open('test1.png'))
print(data)

打印结果:

[Decoded(data=b'test1', type='QRCODE', rect=Rect(left=24, top=24, width=126, height=126), polygon=[Point(x=24, y=24), Point(x=24, y=150), Point(x=150, y=150), Point(x=150, y=24)])]

2
投票

我用了将近半个小时的时间让它在Windows + Python 2.7 64位上工作,所以这里有接受答案的补充说明:

并且主要答案的代码应该有效:

import pyqrcode
qr = pyqrcode.create("HORN O.K. PLEASE.")
qr.png("horn.png", scale=6)
import qrtools
qr = qrtools.QR()
qr.decode("horn.png")
print qr.data
© www.soinside.com 2019 - 2024. All rights reserved.