使用tkinter在python中播放动画GIF

时间:2017-05-03 22:12:24

标签: python python-3.x tkinter animated-gif

我想使用python3和tkinter创建一个虚拟宠物风格的游戏。到目前为止,我已经有了主窗口并且已经开始添加标签,但我遇到的问题是播放GIF动画。我在这里搜索并找到了一些答案,但他们不断抛出错误。我发现的结果是使用PhotoImage的gif的索引位置继续在一定范围内。

    # Loop through the index of the animated gif
frame2 = [PhotoImage(file='images/ball-1.gif', format = 'gif -index %i' %i) for i in range(100)]

def update(ind):

    frame = frame2[ind]
    ind += 1
    img.configure(image=frame)
    ms.after(100, update, ind)

img = Label(ms)
img.place(x=250, y=250, anchor="center")

ms.after(0, update, 0)
ms.mainloop()

当我使用“pyhton3 main.py”在终端中运行时,我收到以下错误:

  

_tkinter.TclError:此索引没有图像数据

我忽视或完全遗漏了什么?

以下是GitHub存储库的链接,以查看完整项目:VirtPet_Python

提前致谢!

3 个答案:

答案 0 :(得分:5)

错误意味着您尝试加载100帧,但gif小于此值。

tkinter中的GIF动画非常糟糕。我在一段时间之前编写了这段代码,你可以偷走它,但除了小GIF之外什么都会变得迟钝:

import tkinter as tk
from PIL import Image, ImageTk
from itertools import count

class ImageLabel(tk.Label):
    """a label that displays images, and plays them if they are gifs"""
    def load(self, im):
        if isinstance(im, str):
            im = Image.open(im)
        self.loc = 0
        self.frames = []

        try:
            for i in count(1):
                self.frames.append(ImageTk.PhotoImage(im.copy()))
                im.seek(i)
        except EOFError:
            pass

        try:
            self.delay = im.info['duration']
        except:
            self.delay = 100

        if len(self.frames) == 1:
            self.config(image=self.frames[0])
        else:
            self.next_frame()

    def unload(self):
        self.config(image=None)
        self.frames = None

    def next_frame(self):
        if self.frames:
            self.loc += 1
            self.loc %= len(self.frames)
            self.config(image=self.frames[self.loc])
            self.after(self.delay, self.next_frame)

root = tk.Tk()
lbl = ImageLabel(root)
lbl.pack()
lbl.load('ball-1.gif')
root.mainloop()

答案 1 :(得分:0)

首先,您需要知道GIF文件的最后一个范围。因此,通过更改i的不同值,您会得到它。因为我的条件是31。 那么只需放置条件即可,它将无限播放gif。

    from tkinter import *
    import time
    import os
    root = Tk()

    frames = [PhotoImage(file='./images/play.gif',format = 'gif -index %i' %(i)) for i in range(31)]

    def update(ind):
        frame = frames[ind]
        ind += 1
        print(ind)
        if ind>30: #With this condition it will play gif infinitely
            ind = 0
        label.configure(image=frame)
        root.after(100, update, ind)

    label = Label(root)
    label.pack()
    root.after(0, update, 0)
    root.mainloop()

答案 2 :(得分:0)

一种非常简单的方法是使用多线程。

要在Tkinter窗口中无限运行GIF,请遵循以下步骤:

  1. 创建一个函数以运行GIF。
  2. 将您的代码放入函数内部while True中的GIF中。
  3. 创建一个线程来运行该函数。
  4. 在程序的主要流程中运行root.mainloop()
  5. 使用time.sleep()控制动画的速度。

请参阅下面的代码:

i=0
ph = ImageTk.PhotoImage(Image.fromarray(imageframes[i]))
imglabel=Label(f2,image=ph)
imglabel.grid(row=0,column=0)

def runthegif(root,i):
    
    while True:
        i = i + 7
        i= i % 150
        
        ph=ImageTk.PhotoImage(PhotoImage(file='images/ball.gif',format='gif -index %i' %i))
        imagelabel=Label(f2,image=ph)
        imagelabel.grid(row=0,column=0)
        time.sleep(0.1)
    


t1=threading.Thread(target=runthegif,args=(root,i))
t1.start()


root.mainloop()