编程语言
首页 > 编程语言> > python之qrcode模块生成二维码

python之qrcode模块生成二维码

作者:互联网

一、准备安装包

      qrcode 依赖 Image 这个包:

 

二、调试代码

import qrcode //模块导入
 //调用qrcode的make()方法传入url或者想要展示的内容
img = qrcode.make('http://www.baidu.com')
 //写入文件
with open('test.png', 'wb') as f:
    img.save(f)

生成的二维码:

 

 

将二维码转为byte 类型

# -*- coding: utf8 -*-

"""
二维码生成器
"""
from io import BytesIO

import qrcode
# 生成二维码
img = qrcode.make(data="你好")
print img
print type(img)
stream = BytesIO()
img.save(stream, 'jpeg')

print stream.getvalue()

 

 

 




 

标签:img,stream,python,make,print,二维码,qrcode
来源: https://www.cnblogs.com/zhaoyingjie/p/16415582.html