+ 1
How to set gif image on label with tkinter
Tkinter
2 Antworten
+ 21
pic = PhotoImage(file="Amit.gif")
label = Label(root,image=pic)
label.pack()
#Hope it helps👮
+ 1
By this method it set gif as image and gif do not animate . if u have another method Please tell me