前提・実現したいこと
参考書をもとにPythonの勉強をしているのですが、画像を表示するプログラムをVisual Studio Code内で実行するときにエラーメッセージが出てしまいます。
(同じプログラムをIDLE内で実行すると、画像の表示はできました。)
Visual Studio Code内でプログラムを実行し、画像がうまく表示できるようにしたいです。
初心者ですが、どなたかご教授いただければ幸いです。
よろしくお願い致します。
###参考書・ファイル名と画像について
参考書:Pythonでつくるゲーム開発入門講座
ファイル名:list0604_2.py
ファイル場所:Documents/python_game/Chapter6/
画像:iroha.png
画像場所:Documents/ython_game/Chapter6/
発生している問題・エラーメッセージ
Traceback (most recent call last): File "c:/Users/81703/Documents/python_game/Chapter6/list0604_2.py", line 9, in <module> gazou=tkinter.PhotoImage(file="iroha.png") File "C:\Users\81703\AppData\Local\Programs\Python\Python38\lib\tkinter\__init__.py", line 4061, in __init__ Image.__init__(self, 'photo', name, cnf, master, **kw) File "C:\Users\81703\AppData\Local\Programs\Python\Python38\lib\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
該当のソースコード
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()
試したこと
- ファイルと画像の場所をドキュメントからデスクトップに移動
補足情報(FW/ツールのバージョンなど)
OS:Windows10
Pythonのバージョン:3.8.1 64-bit
テキストエディタ:Visual Studio Code(ver:1.42.0)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/11 05:11