90b943c90f
Playing with Tkinter in the form of Logogame and Editor
14 lines
223 B
Python
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()
|