from Tkinter import * ventana=Tk() ventana.geometry("500x500") ventana.title("Uso de imagen") imagen=PhotoImage(file="gif_terminado.gif") #imgbtn=PhotoImage(file="") fondo = Label(ventana,image=imagen).place(x=0,y=0) #boton = Button(ventana,image=imgbtn).place(x=20,y=20) ventana.mainloop()
RESULTADO
Video de referencia: https://www.youtube.com/watch?v=DI9xgowNs-g
No hay comentarios.:
Publicar un comentario