AnimatedGIF icon indicating copy to clipboard operation
AnimatedGIF copied to clipboard

Python class to animate a GIF using only tkinter

Results 3 AnimatedGIF issues
Sort by recently updated
recently updated
newest added

I realize that this is similar to several other issues, however in the past they were related to Python 2; however, I am getting this error with Python 3.7.6.

you can add param background=None ```python ... def __init__(self, root, gif_file, delay=0.04,background="white"): tk.Label.__init__(self, root,background=background) ... ``` P.S. Thanks to your repository, Thoru is dancing in my bottom left

my gif works but it looks very strange(i tried many gifs same bug each time) `import tkinter from AnimatedGIF import * root = tk.Tk() root.title("minions") root.geometry("400x900") gif = AnimatedGif(root, "main.gif",...