继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Python实现文字转二维码(欢迎拍砖)

Vimo
关注TA
已关注
手记 3
粉丝 33
获赞 104
import qrcode
import tkinter

url = 'temp.png'

def alert_qrcode(content):
    q = qrcode.main.QRCode()
    q.add_data(content)
    q.make()
    img = q.make_image()
    img.save(url)

    root = tkinter.Tk()
    canvas = tkinter.Canvas(root, width=400, height=400, bg='white')
    img2 = tkinter.PhotoImage(file=url)
    canvas.create_image(200, 200, image=img2)
    canvas.pack()
    root.mainloop()

while 1:
    inp = input('Please input some text:').strip()
    if inp.find('end') == 0:
        print('Process exited.')
        break
    else:
        alert_qrcode(inp)
打开App,阅读手记
9人推荐
发表评论
随时随地看视频慕课网APP

热门评论

interesting

Python版本是3.5 需要安装pillow 和qrcode 两个包

查看全部评论