您想要在 Python tkinter 中加入一張圖片嗎?根據網絡搜索結果,您可以使用 PIL 或 ImageTk 模塊來實現這個功能。¹²³
您可以參考以下的代碼示例:
python
from tkinter import *
from PIL import ImageTk, Image
root = Tk()
root.title("Image Example")
# 打開圖片文件
img = Image.open("example.jpg")
# 調整圖片大小
img = img.resize((200, 200))
# 轉換為 PhotoImage 對象
photo = ImageTk.PhotoImage(img)
# 創建一個標籤顯示圖片
label = Label(root, image=photo)
label.pack()
root.mainloop()
來源: 與 Bing 的交談, 2023/3/16(1) python - How to add an image in Tkinter? - Stack Overflow. https://stackoverflow.com/questions/10133856/how-to-add-an-image-in-tkinter 已存取 2023/3/16.
(2) How To Add Images In Tkinter - Using The Python Pillow Package. https://www.activestate.com/resources/quick-reads/how-to-add-images-in-tkinter/ 已存取 2023/3/16.
(3) Python | Add image on a Tkinter button - GeeksforGeeks. https://www.geeksforgeeks.org/python-add-image-on-a-tkinter-button/ 已存取 2023/3/16.