我有一个Tkinter代码,它是一个较大程序的一部分,我想在该Tkinter窗口中插入一个图像cellView.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: -20)
。但是当我执行这段代码
logon.gif
(在另一个程序中有效)它显示错误消息:
import PIL
from PIL import Image
from PIL import ImageTk
from tkinter import *
parent = Tk()
photo = PhotoImage(file="logon.gif")
w = Label(parent, image=photo)
w.photo = photo
w.pack()
parent.mainloop()
是因为我在程序的while循环中使用tkinter吗? 这是导致错误消息的代码(我也有函数,但是将其作为完整代码粘贴到这里太长了)
`_tkinter.TclError: image "pyimage1" doesn't exist`