else/Logogame/test.py
Voussoir 90b943c90f else
Playing with Tkinter in the form of Logogame and Editor
2015-03-04 02:07:48 -08:00

14 lines
223 B
Python

import tkinter
from PIL import Image
from PIL import ImageTk
t=tkinter.Tk()
im = Image.open('images/swirl_00.png')
im = ImageTk.PhotoImage(im)
l = tkinter.Label(t, text="heyo", image=im)
l.im = im
l.pack()
t.mainloop()