ok so school project
goal of this code piece is to display a 450x450 gif for 20sec
output only displays a section of the gif
photo = tkinter.PhotoImage(file = './Images/img1.gif')
root.geometry("450x450")
root.update()
img = canvas.create_image(225,225, image=photo)
root.after(20000, lambda: canvas.delete(img))
root.mainloop()
from what i know, geometry defines the window dimensions, and the coordinates in img define the center position.
current result is https://i.stack.imgur.com/PSCce.png
desired result is https://i.stack.imgur.com/ByFHv.jpg
Expand your canvas to full window.