当前位置: 首页 > 工具软件 > G2Plot-QRCode > 使用案例 >

利用Python QRCode模块快速生成二维码

宦树
2023-12-01

安装qrcode相关模块:

pip install qrcode
pip install Image

生成二维码的Python实现:

import qrcode

def qrCodeGenerator(data, qrcode_file):
  qr = qrcode.QRCode(
    version=1,
    error_correction=qrcode.constants.ERROR_CORRECT_H,
    box_size=12,
    border=4
  )

  qr.add_data(data)
  qr.make(fit=True)

  img = qr.make_image()
  img.save(qrcode_file)
  img.show()


def main():
  data = str(input('请输入文本(例如https://www.baidu.com):'))
  qrcode_file = r'D:\Images\qrcode.png'
  qrCodeGenerator(data, qrcode_file)
  print('二维码已保存到指定路径下:', qrcode_file)

if __name__ == "__main__":
  main()

References
【1】https://www.jianshu.com/p/c0073c6aa544

 类似资料: