Background Tkinter
Fermé
Python_2522
Messages postés
9
Date d'inscription
samedi 17 juillet 2021
Statut
Membre
Dernière intervention
5 août 2023
-
31 juil. 2021 à 20:13
vortex - 31 juil. 2021 à 22:53
vortex - 31 juil. 2021 à 22:53
A voir également:
- Background Tkinter
- Windows 7 logon background changer - Télécharger - Thèmes & Fonds d'écran
- Background remover - Télécharger - Montage photo
- Windows 7 starter background changer - Télécharger - Thèmes & Fonds d'écran
- Focus_set tkinter ✓ - Forum Python
- Enlever background image - Guide
2 réponses
Bonsoir,
Lorsque je cherche, j'obtiens des tas de résultats :
https://duckduckgo.com/?q=tkinter+image+background&t=h_&ia=web
Il faut donc en dire plus sur ce qui te pose souci.
Lorsque je cherche, j'obtiens des tas de résultats :
https://duckduckgo.com/?q=tkinter+image+background&t=h_&ia=web
Il faut donc en dire plus sur ce qui te pose souci.
Python_2522
Messages postés
9
Date d'inscription
samedi 17 juillet 2021
Statut
Membre
Dernière intervention
5 août 2023
31 juil. 2021 à 22:11
31 juil. 2021 à 22:11
Voici l'erreur regardez ! J'ai déjà essayé plusieurs fois
Voilà
Traceback (most recent call last): File "c:\Users\maxmo\Desktop\BS\Brawler.py", line 11, in <module> filename = PhotoImage(file = "C:\\maxmo\\Desktop\\BS\\bg.jpg") File "C:\Users\maxmo\AppData\Local\Programs\Python\Python39\lib\tkinter\__init__.py", line 4064, in __init__ Image.__init__(self, 'photo', name, cnf, master, **kw) File "C:\Users\maxmo\AppData\Local\Programs\Python\Python39\lib\tkinter\__init__.py", line 4009, in __init__ self.tk.call(('image', 'create', imgtype, name,) + options) _tkinter.TclError: couldn't open "C:\maxmo\Desktop\BS\bg.jpg": no such file or directory
Voilà
Simple, l'image n'existe pas à cet endroit de ton disque puisque l'erreur no such file or directory est assez causante.
Pour t'en convaincre et confirmer cela, il suffit de tenter de l'ouvrir avec un simple open.
À tout hasard, le chemin ne serait pas plutôt c:/Users/maxmo/Desktop/BS/bg.jpg ?
Pour t'en convaincre et confirmer cela, il suffit de tenter de l'ouvrir avec un simple open.
try: with open('c:/maxmo/Desktop/BS/bg.jpg'): print('Fichier existant !') except FileNotFoundError: print('Fichier inexistant !')
À tout hasard, le chemin ne serait pas plutôt c:/Users/maxmo/Desktop/BS/bg.jpg ?