python初心者です。
vscodeで以下の記述をしたのですが、動きません。
エラー文は以下です。
ただし、同条件でIDLEの正規エディタでは問題なく動きます。
import tkinter root = tkinter.Tk() root.title("初めての画像表示") canvas = tkinter.Canvas(root, width=400, height=600) # キャンバスの部品を作る canvas.pack() # ウィンドウにキャンバスを配置 gazou = tkinter.PhotoImage(file="iroha.png") canvas.create_image(200, 300, image=gazou) root.mainloop()
Traceback (most recent call last): File "/Volumes/Transcend/python_game/Lesson6/0604_2.py", line 10, in <module> gazou = tkinter.PhotoImage(file="iroha.png") File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/tkinter/__init__.py", line 4061, in __init__ Image.__init__(self, 'photo', name, cnf, master, **kw) File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/tkinter/__init__.py", line 4006, in __init__ self.tk.call(('image', 'create', imgtype, name,) + options) _tkinter.TclError: couldn't open "iroha.png": no such file or directory
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/12 07:52
2019/12/12 12:32