from Tkinter import *
class App():
def __init__(self, master):
img = PhotoImage(file="/Users/imac/Desktop/Untitled-1.gif")
label = Label(image=img)
label.pack()
root = Tk()
app = App(root)
root.geometry("200x200+300+300")
root.title("Hello World!")
mainloop()
上面的代码没有错误,但是图像不会显示,尽管图像应该是空的间隔块。不应该有像PIL这样的库,或者我错了吗?