在使用 PIL 加载图像并将其显示在 Tkinter 创建的窗口中时,我在非常基本的层面上遗漏了一些东西。我想要做的最简单的形式是:
import Tkinter as TK
from PIL import Image, ImageTk
im = Image.open("C:\\tinycat.jpg")
tkIm = ImageTk.PhotoImage(im)
tkIm.pack()
TK.mainloop()
当我尝试运行上面的代码时,我得到以下信息:
RuntimeError: Too early to create image
Exception AttributeError: "PhotoImage instance has no attribute
'_PhotoImage__photo'" in <bound method PhotoImage.__del__ of
<PIL.ImageTk.PhotoImage instance at 0x00C00030>> ignored
我已经确认该文件存在并且可以在图像编辑器中打开,并且可以使用 im.show() 显示它。我错过了什么?