Python Forum
Tkinter Animation
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tkinter Animation
#1
How to use gif for Animation Movement in Tkinter

from tkinter import *

root = Tk()

img = PhotoImage(file = 'Image_21.gif')
panel = Label(root, image = img)
panel.pack()

root.mainloop()
Reply
#2
Here's a tkinter animation script to study: http://effbot.org/zone/tkinter-animation.htm
Reply
#3
(Nov-03-2019, 07:03 PM)Larz60+ Wrote: Here's a tkinter animation script to study: http://effbot.org/zone/tkinter-animation.htm
But i want to insert my own gif
Reply
#4
just search youtube and google there are many tutorials and videos available on the subject.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Tkinter Matplotlib Animation Graph not rendering dimidgen 3 539 Mar-12-2024, 02:09 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020