###実現したいこと
パスにある画像ファイルを表示したいです。
質問になれていないため至らない点もあるかと存じますが、解決法をご教示頂ければ幸いです。
###前提条件
参考文献:12歳からはじめるゼロからのPython
ソースコードファイル名:chap3.py
画像パス:img3/chap3-back.png
###発生している問題・エラーメッセージ
$ python chap3.py Traceback (most recent call last): File "chap3.py", line 9, in <module> img = tkinter.PhotoImage(file="img3/chap3-back.png") File "/Users/tuba/.pyenv/versions/3.6.2/lib/python3.6/tkinter/__init__.py", line 3539, in __init__ Image.__init__(self, 'photo', name, cnf, master, **kw) File "/Users/tuba/.pyenv/versions/3.6.2/lib/python3.6/tkinter/__init__.py", line 3495, in __init__ self.tk.call(('image', 'create', imgtype, name,) + options) _tkinter.TclError: couldn't recognize data in image file "img3/chap3-back.png"
###該当のソースコード
import tkinter root=tkinter.Tk() root.title("リリーに質問") root.minsize(640,480) canvas=tkinter.Canvas(bg="black",width=640,height=480) canvas.place(x=0,y=0) img = tkinter.PhotoImage(file="img3/chap3-back.png") canvas.create_image(0, 0, image=img) root.mainloop()
###試したこと
- 画像パスの確認
- パイソンのバージョン確認
###補足情報(言語/FW/ツール等のバージョンなど)
エディタ:Visual Studio Code
OS:macOS Sierra
python version:3.6.2
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/09/04 15:54