I've been searching for this on google for a while, but I didn't find anything.
I want to display an Image inside a Tkinter Window, but the Window should refresh the image every second or so.
How do I do that?
My Code so far:
Code:
import Tkinter import Image, ImageTk im = Image.open('temp.png') root = Tkinter.Tk() tkimage = ImageTk.PhotoImage(im)