小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

Python|自制二維碼生成器

 算法與編程之美 2020-08-11

1 前言

2準(zhǔn)備

這個二維碼生成器是由qrcode(生成二維碼)庫與tkinter(圖形ui界面)組成的。首先先在命令行安裝以下三個模塊,分別是qrcode、image、pillowPIL)。安裝方式很簡單。

pip install qrcode

pip install image

pip install pillow

安裝完整過后直接在py文件中導(dǎo)入以下模塊和方法:

from tkinter import *

from tkinter.filedialog import *

from PIL import Image,ImageTk

import qrcode

3具體步驟

3.1編寫ui界面

導(dǎo)入模塊后直接用tkinter模塊編寫ui界面。小編這里的ui界面為:

圖3.1ui界面

具體代碼如下:

root = Tk()

root.title("二維碼生成器")

root.geometry('600x400+400+100')

button1 = Button(root,text = '選擇圖標(biāo)',font = ('宋體',20),fg = 'green',bg = 'white',command = openfile)#設(shè)置按鈕

button2 = Button(root,text = '保存二維碼',font = ('宋體',20),fg = 'green',bg = 'white',command = savefile)#設(shè)置按鈕

button1.place(x = 90,y = 330,width = 120,height = 50)#顯示按鈕

button2.place(x = 385,y = 330,width = 150,height = 50)#顯示按鈕

label1 = Label(root,text = '輸入鏈接',font = ('宋體',20),fg = 'black',bg = 'white')#設(shè)置組件

label1.place(x = 235,y = 5,width = 130,height = 50)

entry1 = Entry(root,font = ('宋體',20))#設(shè)置輸入框

entry1.place(x = 50,y = 60,width = 510,height = 30)#顯示組件

canvas1 = Canvas(root,width = 300,height = 300,bg = "white")#創(chuàng)建畫布

canvas2 = Canvas(root,width = 300,height = 300,bg = "white")#創(chuàng)建畫布

canvas1.place(x = 50,y = 100,width = 200,height = 200)

canvas2.place(x = 360,y = 100,width = 200,height = 200)

button = Button(root,text = '生成',font = ('宋體',15),fg = 'black',bg = 'pink',command = creat)#設(shè)置按鈕

button.place(x = 280,y = 200,width = 50,height = 40)#顯示按鈕

root.mainloop()

Tkinter的基礎(chǔ)用法此公眾號內(nèi)有相關(guān)用法,可以搜索關(guān)鍵詞tkinter閱讀。

這里只簡單說一下部分方法及參數(shù)的含義。

Button()方法為創(chuàng)建一個按鈕組件,其中command為點擊按鈕綁定的事件(函數(shù)方法)。

place()為一種布局方式,參數(shù)xy為相對ui界面的坐標(biāo),widthheight為顯示寬高。

Label()為顯示文字組件,例如圖3.1中的“輸入鏈接”。

Entry()為輸入框組件,這里用于接收鏈接。使用entry.get()獲取其中的內(nèi)容。

Canvas()為畫布組件,這里用于展示圖標(biāo)和二維碼。

font參數(shù)為字體。其中可以設(shè)置字體樣式和大小。

3.2生成二維碼

程序的ui界面就已經(jīng)寫好了,最后只需要完成按鈕中的comman參數(shù)就好了。分別有三個方法。先來看選擇圖標(biāo)。

def openfile():

    global filename,image_name

    filename = askopenfilename()

    image_name = Image.open(filename)

    image_name = image_name.resize((200, 200), Image.ANTIALIAS)#縮放圖片

    im_root = ImageTk.PhotoImage(image_name)  # 預(yù)設(shè)打開的圖片

    canvas1.create_image(100,100,image=im_root)  # 嵌入預(yù)設(shè)的圖片

    canvas1.place(x = 50,y = 100,width = 200,height = 200)

    root.mainloop()

這里面只說一下askopenfilename(),這是tikinter模塊中filedialog類的一個方法,返回的是你當(dāng)前選擇文件的路徑。然后利用image模塊將此圖片打開并按照要求縮放,最終展示在畫布上。

圖3.2選取圖片

圖3.3展示圖片

然后是生成函數(shù):

def creat():

    global img

    qr = qrcode.QRCode(

        version=2,

        error_correction=qrcode.constants.ERROR_CORRECT_Q,

        box_size=10,

        border=1)

    url = entry1.get()

    qr.add_data(url)

    qr.make(fit=True)

    img = qr.make_image()

    img = img.convert("RGBA")

    icon = image_name

    icon = icon.convert("RGBA")

    imgWight, imgHeight = img.size

    iconWight = int(imgWight / 3)

    iconHeight = int(imgHeight / 3)

    icon = icon.resize((iconWight, iconHeight), Image.ANTIALIAS)

    posW = int((imgWight - iconWight) / 2)

    posH = int((imgHeight - iconHeight) / 2)

    img.paste(icon, (posW, posH), icon)

    img1 = img.resize((200, 200), Image.ANTIALIAS)

    im_root = ImageTk.PhotoImage(img1)  # 預(yù)設(shè)打開的圖片

    canvas2.create_image(100,100,image=im_root)  # 嵌入預(yù)設(shè)的圖片

    canvas2.place(x = 360,y = 100,width = 200,height = 200)

    root.mainloop()

其中qr部分為二維碼的配置。

version參數(shù)是從140,其控制QR碼的大小的整數(shù)(最小的,版本1,是一個21×21矩陣)。設(shè)置為None并在使代碼自動確定時使用fit參數(shù)。

error_correction參數(shù)控制用于QR碼的誤差校正。在qrcode 軟件包中提供了以下四個常量:

ERROR_CORRECT_L

可以糾正大約7%或更少的錯誤。

ERROR_CORRECT_M(默認(rèn))

可以糾正大約15%或更少的錯誤。

ERROR_CORRECT_Q

可以糾正大約25%或更少的錯誤。

ERROR_CORRECT_H。

可以糾正大約30%或更少的錯誤。

box_size參數(shù)控制每個二維碼格子中有多少個像素。

border參數(shù)控制邊界應(yīng)多少盒厚是(默認(rèn)為4,這是最低根據(jù)規(guī)范)。

add_data()為二維碼的鏈接,這里直接獲取輸入框中的內(nèi)容。

然后后面的內(nèi)容都為控制圖標(biāo)與二維碼的相對大小和位置。以上這部分的參數(shù)均來自qrcode的官方文檔。詳情請到官網(wǎng)查看:https:///project/qrcode/5.1/

該方法寫好后輸入鏈接,點擊生成,就可以生成一個帶圖標(biāo)的二維碼了。

圖3.4生成二維碼

最后是保存二維碼:

def savefile():

    pathname = asksaveasfilename(defaultextension = '.png',initialfile = '新的二維碼.png')

    img.save(pathname)

其中的asksavesfilename同樣是返回文件保存的路徑,后面兩個參數(shù)依次是默認(rèn)圖片格式、默認(rèn)文件名。最后點擊保存二維碼即可大功告成。

圖3.5保存二維碼

最后打開保存的文件夾,檢查一下,發(fā)現(xiàn)成功生成了二維碼。

3.6查看二維碼

4完整代碼

from tkinter import *

from tkinter.filedialog import *

from PIL import Image,ImageTk

import qrcode

def openfile():

    global filename,image_name

    filename = askopenfilename()

    image_name = Image.open(filename)

    image_name = image_name.resize((200, 200), Image.ANTIALIAS)#縮放圖片

    im_root = ImageTk.PhotoImage(image_name)  # 預(yù)設(shè)打開的圖片

    canvas1.create_image(100,100,image=im_root)  # 嵌入預(yù)設(shè)的圖片

    canvas1.place(x = 50,y = 100,width = 200,height = 200)

    root.mainloop()

def creat():

    global img

    qr = qrcode.QRCode(

        version=2,

        error_correction=qrcode.constants.ERROR_CORRECT_Q,

        box_size=10,

        border=1)

    url = entry1.get()

    qr.add_data(url)

    qr.make(fit=True)

    img = qr.make_image()

    img = img.convert("RGBA")

    icon = image_name

    icon = icon.convert("RGBA")

    imgWight, imgHeight = img.size

    iconWight = int(imgWight / 3)

    iconHeight = int(imgHeight / 3)

    icon = icon.resize((iconWight, iconHeight), Image.ANTIALIAS)

    posW = int((imgWight - iconWight) / 2)

    posH = int((imgHeight - iconHeight) / 2)

    img.paste(icon, (posW, posH), icon)

    img1 = img.resize((200, 200), Image.ANTIALIAS)

    im_root = ImageTk.PhotoImage(img1)  # 預(yù)設(shè)打開的圖片

    canvas2.create_image(100,100,image=im_root)  # 嵌入預(yù)設(shè)的圖片

    canvas2.place(x = 360,y = 100,width = 200,height = 200)

    root.mainloop()

def savefile():

    pathname = asksaveasfilename(defaultextension = '.png',initialfile = '新的二維碼.png')

    img.save(pathname)

root = Tk()

root.title("二維碼生成器")

root.geometry('600x400+400+100')

button1 = Button(root,text = '選擇圖標(biāo)',font = ('宋體',20),fg = 'green',bg = 'white',command = openfile)#設(shè)置按鈕

button2 = Button(root,text = '保存二維碼',font = ('宋體',20),fg = 'green',bg = 'white',command = savefile)#設(shè)置按鈕

button1.place(x = 90,y = 330,width = 120,height = 50)#顯示按鈕

button2.place(x = 385,y = 330,width = 150,height = 50)#顯示按鈕

label1 = Label(root,text = '輸入鏈接',font = ('宋體',20),fg = 'black',bg = 'white')#設(shè)置組件

label1.place(x = 235,y = 5,width = 130,height = 50)

entry1 = Entry(root,font = ('宋體',20))#設(shè)置輸入框

entry1.place(x = 50,y = 60,width = 510,height = 30)#顯示組件

canvas1 = Canvas(root,width = 300,height = 300,bg = "white")#創(chuàng)建畫布

canvas2 = Canvas(root,width = 300,height = 300,bg = "white")#創(chuàng)建畫布

canvas1.place(x = 50,y = 100,width = 200,height = 200)

canvas2.place(x = 360,y = 100,width = 200,height = 200)

button = Button(root,text = '生成',font = ('宋體',15),fg = 'black',bg = 'pink',command = creat)#設(shè)置按鈕

button.place(x = 280,y = 200,width = 50,height = 40)#顯示按鈕

root.mainloop()

最后你還可用小編之前分享過的關(guān)于Python文件打包的方法,將該程序打包成exe文件,方便自己和他人使用。


END

實習(xí)編輯   |   王文星

   責(zé)       編   |   八里公路

 where2go 團隊


微信號:算法與編程之美          

    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多