I am trying to put an image on a tkinter button but it doesn't see to work.
root.geometry('512x512')
vbuckimage = tkinter.PhotoImage(file='vbuckicon.gif')
#vbucks button
vbucksButton = tkinter.Button(root,image=vbuckimage,height=5,width=10)
vbucksButton.place(x=256,y=256)
root.mainloop()
the image is in the same place as the .py file