python-qrcode使用PythonImagingLibrary(PIL)来生成二维条形码。
示例代码:
importqrcodeqr=qrcode.QRCode(version=1,error_correction=qrcode.constants.ERROR_CORRECT_L,box_size=10,border=4,)qr.add_data('Somedata')qr.make(fit=True)img=qr.make_image()python-qrcode使用PythonImagingLibrary(PIL)来生成二维条形码。
示例代码:
importqrcodeqr=qrcode.QRCode(version=1,error_correction=qrcode.constants.ERROR_CORRECT_L,box_size=10,border=4,)qr.add_data('Somedata')qr.make(fit=True)img=qr.make_image()
评论