Gif图像无法在tkinter中工作

时间:2017-10-30 20:56:07

标签: python windows tkinter gif

 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.

1 个答案:

答案 0 :(得分:1)

Windows文件名总是必须作为原始字符串输入(在所有python中,而不仅仅是tkinter)。此外,您必须先创建一个根窗口。试试这个:

{{1}}