本文主要是介绍如何用Python创建二维码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
from PIL import Image
import matplotlib.pyplot as plt
import qrcode
import image
import easygui
import tkinter as tk
from tkinter import filedialog
import image
tk.Tk().withdraw()
try:
qr_image = qrcode.make(easygui.enterbox('请输入二维码内容', '二维码生成器'))
easygui.msgbox("生成完毕", "二维码生成器", "好的")
qr_image.show()
if easygui.ynbox("是否保存?", "二维码生成器", ("是", "否")):
qr_image.save(".png")
easygui.msgbox("已保存", "二维码生成器", "好的")
except Exception as error:
easygui.msgbox("报错:" + str(error)+"\n检测到错误类型为:" +
str(sys.exc_info()[0]), "二维码生成器", "好的")
这篇关于如何用Python创建二维码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!