您好,登錄后才能下訂單哦!
本篇內容主要講解“Python使用tkinter加載png、jpg等圖片的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python使用tkinter加載png、jpg等圖片的方法”吧!
Python主要應用于:1、Web開發;2、數據科學研究;3、網絡爬蟲;4、嵌入式應用開發;5、游戲開發;6、桌面應用開發。
首先PhotoImage注意這里只支持gif格式的圖片
photo = PhotoImage(file="D:/python/images/02.gif")
發現tkinter是只支持gif的格式,如果要加載png或者jpg的話就要使用PIL模塊
from tkinter import * from PIL import Image, ImageTk root = Tk() root.title('測試組python畢業題') 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)
則表示已經安裝過了
如果已安裝則先卸載以獲取最新的pillow
運行命令: pip uninstall pillow
然后運行:pip install pillow
就可以了
報錯:
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等圖片的方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。