Soucis tkinter

Fermé
TartuffffDD Messages postés 30 Date d'inscription dimanche 20 mai 2018 Statut Membre Dernière intervention 6 octobre 2018 - 8 juil. 2018 à 11:59
Jithel Messages postés 843 Date d'inscription mercredi 20 juin 2018 Statut Membre Dernière intervention 31 août 2021 - 8 juil. 2018 à 12:21
ceci est un quiz quand une personne perds sa la conduit vers hardcore qui lui conduit a hardcore 2




def hardcore2():
photo = PhotoImage(file='gameover.png')
xubuntu = Tk()


repj.place(x = '2000', y = '2000')
repf.place(x = '2000', y = '2000')
titre.place(x = '2000', y = '2000')
q1.place(x = '2000', y = '2000')
labeltext.place(x = '2000', y = '2000')
lebeltext.place(x = '2000', y = '2000')
d.place(x = '2000', y = '2000')
print('dommage :)')

label5 = Button(xubuntu, image=photo).pack()

il ne m'affiche pas mon image pourriez vous m'aidez

1 réponse

Jithel Messages postés 843 Date d'inscription mercredi 20 juin 2018 Statut Membre Dernière intervention 31 août 2021 171
8 juil. 2018 à 12:21
PhotoImage ne gère pas le format .png.

Regarde sur la documentation officielle comment utiliser PIL à la place :
http://effbot.org/tkinterbook/photoimage.htm
0