Ошибка: AttributeError: объект «PhotoImage» не имеет атрибута «_PhotoImage__photo».Python

Программы на Python
Anonymous
Ошибка: AttributeError: объект «PhotoImage» не имеет атрибута «_PhotoImage__photo».

Сообщение Anonymous »

Я создаю цифрового помощника (не-вредоносного клона BonziBuddy, если хотите), и эта ошибка возникает, когда я пытаюсь отобразить изображение в «символьном» окне, я получаю эту ошибку. Вот мой код:

Код: Выделить всё

Traceback (most recent call last): File "/home/runner/Mon/main.py", line 30, in  pyimage1 = ImageTk.PhotoImage(file=PIL.Image.open("assets/1.png")) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/runner/Mon/.pythonlibs/lib/python3.11/site-packages/PIL/ImageTk.py", line 102, in __init__ image = _get_image_from_kw(kw) ^^^^^^^^^^^^^^^^^^^^^^ File "/home/runner/Mon/.pythonlibs/lib/python3.11/site-packages/PIL/ImageTk.py", line 59, in _get_image_from_kw return Image.open(source) ^^^^^^^^^^^^^^^^^^ File "/home/runner/Mon/.pythonlibs/lib/python3.11/site-packages/PIL/Image.py", line 3442, in open prefix = fp.read(16) ^^^^^^^ AttributeError: 'PngImageFile' object has no attribute 'read' Exception ignored in:  Traceback (most recent call last): File "/home/runner/Mon/.pythonlibs/lib/python3.11/site-packages/PIL/ImageTk.py", line 132, in __del__ name = self.__photo.name ^^^^^^^^^^^^ AttributeError: 'PhotoImage' object has no attribute '_PhotoImage__photo' 
Вот ошибка:

Код: Выделить всё

File "/home/runner/Mon/.pythonlibs/lib/python3.11/site-packages/PIL/ImageTk.py", line 102, in __init__ image = _get_image_from_kw(kw) ^^^^^^^^^^^^^^^^^^^^^^ File "/home/runner/Mon/.pythonlibs/lib/python3.11/site-packages/PIL/ImageTk.py", line 59, in _get_image_from_kw return Image.open(source) ^^^^^^^^^^^^^^^^^^ File "/home/runner/Mon/.pythonlibs/lib/python3.11/site-packages/PIL/Image.py", line 3442, in open prefix = fp.read(16) ^^^^^^^ AttributeError: 'PngImageFile' object has no attribute 'read' Exception ignored in:  Traceback (most recent call last): File "/home/runner/Mon/.pythonlibs/lib/python3.11/site-packages/PIL/ImageTk.py", line 132, in __del__ name = self.__photo.name ^^^^^^^^^^^^ AttributeError: 'PhotoImage' object has no attribute '_PhotoImage__photo'


Подробнее здесь: https://stackoverflow.com/questions/789 ... mage-photo

Вернуться в «Python»