Forum >> Programmazione Python >> GUI >> Problemi con l'inserimento di immagini (tkinter)

Pagina: 1

Ho provato a scrivere questo programma:
from tkinter import *
import random

def artisti():
    roo = Tk()
    roo.geometry("500x500")
    roo.title("Quadro casuale")
    num = random.randint(1, 1)
    if num == 1:
        a = Button(roo, image="C:\Users\luke\Desktop\c.gif").pack()
        b = Button(roo, text="Esci", command=exit).pack()
        roo.mainloop()

ro = Tk()
ro.geometry("900x400")
ro.title("Artisti")
a = Label(ro, text="Immagini di quadri casuali, per rallegrarvi la giornata").pack()
b = Button(ro, text="vai", command=artisti).pack()
ro.mainloop()


Ma quando eseguo si apre un'insolita finestra di dialogo (che allego)




Qualcuno puo' aiutarmi?

Grazie




~luke
Allegati
prova con

a = Button(roo, image=r"C:\Users\luke\Desktop\c.gif").pack()





Ciao,



THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝


Pagina: 1



Esegui il login per scrivere una risposta.