标签:actor img python ext 令行 span HERE style nbsp
pip install qrcode (pip/pip3)
pip install Image
命令行:
qr ‘http://www.ziqiangxuetang.com‘ > test.png
代码:
import qrcode
img = qrcode.make(‘http://www.tuweizhong.com‘)
with open(‘test.png‘, ‘wb‘) as f:
img.save(f)
pip install git+git://github.com/ojii/pymaging.git#egg=pymaging
pip install git+git://github.com/ojii/pymaging-png.git#egg=pymaging-png
命令行:
qr --factory=pymaging "Some text" > test.png
代码:
import qrcode
from qrcode.image.pure import PymagingImage
img = qrcode.make(‘Some data here‘, image_factory=PymagingImage)
标签:actor img python ext 令行 span HERE style nbsp
原文地址:https://www.cnblogs.com/tuijin/p/9531168.html