I have a relatively simple python script utilizing a tkinter GUI
the code looks something like
from Tkinter import *
master = Tk()
def f1():
print "function f1 does stuff, nice.."
title = Label(text="Tweet Grabber 1.1")
title.pack(fill=X)
b = Button(master, text="OK", command=f1)
b.pack(fill=X)
mainloop()
Using tkinter is it possible to add an image component?
ultimately where I can go something like img = image(src="path/imagename.filetype")
then img.pack()
also
Is it possible to use an image as a button with tkinter?