from tkinter import *
photo = PhotoImage(file="C:\Temp\test\computer.gif")
lbl = Label(root, image=photo, height="10", width="20").pack
我完全不知道为什么这不起作用:_tkinter.TclError: couldn't recognize data in image file "C:\Temp\test\computer.gif.
答案 0 :(得分:1)
Windows文件名总是必须作为原始字符串输入(在所有python中,而不仅仅是tkinter)。此外,您必须先创建一个根窗口。试试这个:
{{1}}