要在Tkinter的Label中顯示圖片,可以使用PhotoImage類來加載圖片并將其賦值給Label的image屬性。
以下是一個示例代碼:
import tkinter as tk
from tkinter import PhotoImage
root = tk.Tk()
# 加載圖片
image = PhotoImage(file="example.png")
# 在Label中顯示圖片
label = tk.Label(root, image=image)
label.pack()
root.mainloop()
在這個示例中,首先加載了名為"example.png"的圖片,然后創建了一個Label并將圖片賦值給它的image屬性,最后將Label添加到主窗口中顯示。確保在PhotoImage
中傳入正確的圖片路徑。