我的gif图片没有在tkinter中移动。请帮忙。谢谢
canvas = Canvas(width = 450, height = 450, bg = 'white')
canvas.grid(row=2, column=0,sticky = 'W')
gif = PhotoImage(file = "picture.gif")
canvas.create_image(0, 0, image = gif, anchor = NW)
mainloop()
答案 0 :(得分:1)
Tkinter不支持GIF动画。
tk照片图像类支持从动画gif的每个子图像创建图像,然后您可以创建自己的动画。我不知道python中的任何示例,但可以在这里看到tcl / tk版本:http://wiki.tcl.tk/4882