from tkinter import *
root = Tk()
photo = PhotoImage(file='blueface.png')
label = Label(root, image=photo)
label.pack()
root.mainloop()
画像face.pngは、このの.pyスクリプトと同じディレクトリにあるが、私はそれを実行したときに、私は次のエラーを取得する:Tkinterをのバージョンがあること.PNG年代を扱うことができないtkinter PhotoImageは存在しませんか?
line 5, in <module>
photo = PhotoImage(file='blueface.png')
line 3539, in __init__
Image.__init__(self, 'photo', name, cnf, master, **kw)
line 3495, in __init__
self.tk.call(('image', 'create', imgtype, name,) + options)
_tkinter.TclError: couldn't open "face.png": no such file or directory
あなたのサンプルコードはblueface.png' 'のファイル名がありますが、あなたのテキスト記述は' face.pngに言及します'。どちらですか? –