Python导入图片gif

时间:2018-03-14 13:36:46

标签: python image

大家早上好, 我试图导入图像logo.gif,但收到一条错误消息,说图像没有退出。 感谢您的帮助。 丹尼斯

from PIL import Image, ImageChops
from PIL.GifImagePlugin import getheader, getdata
img = Image.open("logo.gif")
img.show()

from tkinter import *
window = Tk()

imgLbl = Label( window, image = img )


TclError: image "<PIL.GifImagePlugin.GifImageFile image mode=P size=92x95 at 0x8C92B38>" doesn't exist

1 个答案:

答案 0 :(得分:0)

请参阅此帖Play Animations in GIF with Tkinter

这个问题似乎是重复的。 您必须先通过ImageTk类中的PhotoImage函数将图像转换为兼容tK的图像。