前提・実現したいこと
参考書をもとにpythonを勉強しているのですが、VSCodeで画像が表示できず、困っています。
発生している問題・エラーメッセージ
DEPRECATION WARNING: The system version of Tk is deprecated and may be removed in a future release. Please don't rely on it. Set TK_SILENCE_DEPRECATION=1 to suppress this warning. Traceback (most recent call last): File "/Users/makot4/Desktop/python_game/Chapter6/list0604_2.py", line 7, in <module> gazou = tkinter.PhotoImage(file=root_dir + "iroha.png") File "/Users/makot4/.pyenv/versions/3.9.0/lib/python3.9/tkinter/__init__.py", line 4063, in __init__ Image.__init__(self, 'photo', name, cnf, master, **kw) File "/Users/makot4/.pyenv/versions/3.9.0/lib/python3.9/tkinter/__init__.py", line 4008, in __init__ self.tk.call(('image', 'create', imgtype, name,) + options) _tkinter.TclError: couldn't open "/Users/makot4/Documents/python_game/Chapter6/list0604_2.pyiroha.png": no such file or directory
該当のソースコード
python
1import tkinter 2root = tkinter.Tk() 3root.title("初めての画像表示") 4canvas = tkinter.Canvas(root, width=400, height=600) 5canvas.pack() 6root_dir = "/Users/makot4/Documents/python_game/Chapter6/list0604_2.py" 7gazou = tkinter.PhotoImage(file=root_dir + "iroha.png") 8canvas.create_image(200, 300, image=gazou) 9root.mainloop()
試したこと
・他の質問ページを参考に絶対パスで記述しました。
・画像とプログラムは同じフォルダに入れました。
補足情報(FW/ツールのバージョンなど)
OS:macOS Catalina(ver:10.15.4)
Pythonのバージョン:3.9.1
テキストエディタ:Visual Studio Code(ver: 1.53.0)