我是使用 Tkinter 的 Python GUI 的新手,我坚持以下几点:
我正在尝试使用 Python 的os
模块读取特定目录中的一些图像文件,并在单个窗口中将它们显示为 Tkinter 的标签。图像的平均大小为1990 x 1200
. 因此,我使用 Pillow 库调整了它们的大小,然后使用 for 循环将每个图像打包到窗口中。
但不是显示图像,而是显示一个空白窗口。我写了以下代码:
from PIL import Image, ImageTk
import tkinter as tk
import os
root = tk.Tk()
root.title("Photo Gallery")
root.geometry("655x350")
for (root_, dirs, files) in os.walk("Wallpaper"):
if files:
for file_ in files:
path = os.path.join("Wallpaper", file_)
image_ = Image.open(path)
n_image = image_.resize((100, 100))
photo = ImageTk.PhotoImage(n_image)
img_label = tk.Label(root, image=photo)
img_label.pack()
root.mainloop()
这是空白窗口的屏幕截图:
注意:我使用 Python 3.6.3 和 Pillow 8.2.0。