亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么制作二維碼生成器

發布時間:2021-08-12 16:19:43 來源:億速云 閱讀:251 作者:chen 欄目:大數據

本篇內容主要講解“Python怎么制作二維碼生成器”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python怎么制作二維碼生成器”吧!


準備

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

pip install qrcode
pip install image
pip install pillow

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

from tkinter import *
from tkinter.filedialog import *
from PIL import Image,ImageTk
import qrcode

具體步驟

1編寫ui界面

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

Python怎么制作二維碼生成器

具體代碼如下:

root = Tk()
root.title("二維碼生成器")
root.geometry('600x400+400+100')
button1 = Button(root,text = '選擇圖標',font = ('宋體',20),fg = 'green',bg = 'white',command = openfile)#設置按鈕
button2 = Button(root,text = '保存二維碼',font = ('宋體',20),fg = 'green',bg = 'white',command = savefile)#設置按鈕
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')#設置組件
label1.place(x = 235,y = 5,width = 130,height = 50)
entry1 = Entry(root,font = ('宋體',20))#設置輸入框
entry1.place(x = 50,y = 60,width = 510,height = 30)#顯示組件
canvas1 = Canvas(root,width = 300,height = 300,bg = "white")#創建畫布
canvas2 = Canvas(root,width = 300,height = 300,bg = "white")#創建畫布
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)#設置按鈕
button.place(x = 280,y = 200,width = 50,height = 40)#顯示按鈕
root.mainloop()

Tkinter的基礎用法此公眾號內有相關用法,可以搜索關鍵詞tkinter閱讀。

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

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

place()為一種布局方式,參數x,y為相對ui界面的坐標,width和height為顯示寬高。

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

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

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

font參數為字體。其中可以設置字體樣式和大小。

2生成二維碼

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

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)  # 預設打開的圖片
    canvas1.create_image(100,100,image=im_root)  # 嵌入預設的圖片
    canvas1.place(x = 50,y = 100,width = 200,height = 200)
    root.mainloop()

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

Python怎么制作二維碼生成器

然后是生成函數:

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)  # 預設打開的圖片
    canvas2.create_image(100,100,image=im_root)  # 嵌入預設的圖片
    canvas2.place(x = 360,y = 100,width = 200,height = 200)
    root.mainloop()

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

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

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

ERROR_CORRECT_L

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

ERROR_CORRECT_M(默認)

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

ERROR_CORRECT_Q

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

ERROR_CORRECT_H。

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

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

border參數控制邊界應多少盒厚是(默認為4,這是最低根據規范)。

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

然后后面的內容都為控制圖標與二維碼的相對大小和位置。以上這部分的參數均來自qrcode的官方文檔。詳情請到官網查看:https://pypi.org/project/qrcode/5.1/

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

Python開發:編寫ui界面,制作二維碼生成器

最后是保存二維碼:

def savefile():
    pathname = asksaveasfilename(defaultextension = '.png',initialfile = '新的二維碼.png')
    img.save(pathname)

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

Python怎么制作二維碼生成器

最后打開保存的文件夾,檢查一下,發現成功生成了二維碼。

Python開發:編寫ui界面,制作二維碼生成器

4完整代碼

from tkinter import *
from tkinter.filedialog import *
from PIL import Image,ImageTk
import qrcodedef 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)  # 預設打開的圖片    canvas1.create_image(100,100,image=im_root)  # 嵌入預設的圖片
    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)  # 預設打開的圖片    canvas2.create_image(100,100,image=im_root)  # 嵌入預設的圖片
    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 = '選擇圖標',font = ('宋體',20),fg = 'green',bg = 'white',command = openfile)#設置按鈕
button2 = Button(root,text = '保存二維碼',font = ('宋體',20),fg = 'green',bg = 'white',command = savefile)#設置按鈕
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')#設置組件
label1.place(x = 235,y = 5,width = 130,height = 50)
entry1 = Entry(root,font = ('宋體',20))#設置輸入框
entry1.place(x = 50,y = 60,width = 510,height = 30)#顯示組件
canvas1 = Canvas(root,width = 300,height = 300,bg = "white")#創建畫布
canvas2 = Canvas(root,width = 300,height = 300,bg = "white")#創建畫布
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)#設置按鈕
button.place(x = 280,y = 200,width = 50,height = 40)#顯示按鈕
root.mainloop()

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

到此,相信大家對“Python怎么制作二維碼生成器”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巨鹿县| 武穴市| 巴林右旗| 江华| 罗平县| 康保县| 两当县| 通许县| 内黄县| 门头沟区| 卓尼县| 张北县| 竹溪县| 宕昌县| 集贤县| 怀化市| 礼泉县| 正镶白旗| 永兴县| 色达县| 斗六市| 娄烦县| 平和县| 吉安县| 连云港市| 桂林市| 商丘市| 福安市| 汾阳市| 神木县| 封开县| 四子王旗| 阳高县| 渝中区| 县级市| 荥阳市| 霸州市| 射洪县| 辽阳市| 潮州市| 河西区|