溫馨提示×

溫馨提示×

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

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

Python使用tkinter加載png、jpg等圖片的方法

發(fā)布時間:2021-04-09 11:03:20 來源:億速云 閱讀:948 作者:啵贊 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Python使用tkinter加載png、jpg等圖片的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Python使用tkinter加載png、jpg等圖片的方法”吧!

Python主要用來做什么

Python主要應(yīng)用于:1、Web開發(fā);2、數(shù)據(jù)科學(xué)研究;3、網(wǎng)絡(luò)爬蟲;4、嵌入式應(yīng)用開發(fā);5、游戲開發(fā);6、桌面應(yīng)用開發(fā)。

首先PhotoImage注意這里只支持gif格式的圖片

photo = PhotoImage(file="D:/python/images/02.gif")

發(fā)現(xiàn)tkinter是只支持gif的格式,如果要加載png或者jpg的話就要使用PIL模塊

from tkinter import *
from PIL import Image, ImageTk

root = Tk()
root.title('測試組python畢業(yè)題')

img = Image.open('ques.png')  # 打開圖片
photo = ImageTk.PhotoImage(img)  # 用PIL模塊的PhotoImage打開
imglabel = Label(root, image=photo)
imglabel.grid(row=0, column=0, columnspan=3)

Label(root, text="Answer:").grid(row=1, column=0, sticky=S + N)

answerEntry = Entry(root)
btn = Button(root, text="Submit", command='submit')

answerEntry.grid(row=1, column=1)
btn.grid(row=1, column=2)

mainloop()

但運行時會報

ModuleNotFoundError: No module named 'PIL'

運行命令:

pip install pillow

D:\Program Files\Python37>pip install pillow
Collecting pillow
  Downloading https://files.pythonhosted.org/packages/40/f2/a424d4d5dd6aa8c26636969decbb3da1c01286d344e71429b1d648bccb64/Pillow-6.0.0-cp37-cp37m-win_amd64.whl (2.0MB)
     |████████████████████████████████| 2.0MB 133kB/s
Installing collected packages: pillow
Successfully installed pillow-6.0.0

D:\Program Files\Python37>

如果運行該命令 顯示

Requirement already satisfied: Pillow in c:\program files (x86)\python\lib\site-packages (3.4.2)

則表示已經(jīng)安裝過了

如果已安裝則先卸載以獲取最新的pillow
運行命令: pip uninstall pillow
然后運行:pip install pillow
就可以了

補充:解決python tkinter 展示jpg、png格式圖片的問題

報錯:

from tkinter import *
 
img = PhotoImage(file = r'D:\test\hero\暗黑元首\暗黑元首.jpg')
lable_show = Label(frame_show,imag = img)

解決:首先安裝PIL庫,使用pip命令

pip install pillow

然后使用PIL庫獲得ImageTk.PhotoImage對象代替tk.PhotoImage對象即可

from PIL import Image,ImageTk
 
img = ImageTk.PhotoImage(Image.open(r'D:\test\hero\暗黑元首\暗黑元首.jpg'))
lable_show = Label(frame_show,imag = img)

到此,相信大家對“Python使用tkinter加載png、jpg等圖片的方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI