python的优越之处就在于他可以直接调用已经封装好的包
首先,下载pillow
和qrcode
包 终端下键入一下命令:
1
2
|
pip3 install pillow #python2 用pip install pillow
pip3 install qrcode
|
实现代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import qrcode
# 定义一个类名
def qrcodeWithUrl(url):
savePath = "baidu.png" # 存储二维码 命名
img.save(savePath) # 保存二维码
def qrcodeWithText(text):
img = qrcode.make(text)
savePath = "2.png"
img.save(savePath)
content = input ( "请输入一句话或者键入一个网址" )
if "http" in content: # 如果是网址 则运行 qrcodeWithUrl(url):
qrcodeWithUrl(content)
else : # 如果是文本 则运行 qrcodeWithText(text):
qrcodeWithText(content)
print ( "二维码已经生成好" )
|
运行代码:
1
2
3
4
|
请输入一句话<a href = "http://www.redporn.com" rel = "external nofollow" >http: / / www.redporn.com
< / a>二维码已经生成好
Process finished with exit code 0
|
生成的二维码
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/weixin_41048363/article/details/79261136