前提・実現したいこと
Python初心者で、ゲームを作っています。
VSCodeのターミナルで作成したファイルが表示されるか確認中に、画像が表示されず以下のエラーメッセージが発生しました。
_tkinter.TclError: couldn't open "images/game-main.png": no such file or directory
を解消し、画像が表示される状態にしたいです。
ご教示いただけますと幸いです。
階層については以下のようになっています。
フォルダ名 → sample4.py
フォルダ名 → imagesフォルダ → game-main.png
発生している問題・エラーメッセージ
Traceback (most recent call last): File "/Users/〇〇/Desktop/フォルダ名/sample4.py", line 35, in <module> gazou = tkinter.PhotoImage(file="images/game-main.png") File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/tkinter/__init__.py", line 4062, in __init__ Image.__init__(self, 'photo', name, cnf, master, **kw) File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/tkinter/__init__.py", line 4007, in __init__ self.tk.call(('image', 'create', imgtype, name,) + options) _tkinter.TclError: couldn't open "images/game-main.png": no such file or directory
該当のソースコード
Python
1#!/usr/local/bin/python3.7 2# -*- coding: utf-8 -*- 3 4import tkinter 5import random 6from PIL import Image, ImageTk 7 8r_ans=["巨人", "阪神", "中日", "横浜", "広島","ヤクルト"] 9rank = ["1位", "2位", "3位", "4位", "5位", "6位"] 10 11Q = 0 12 13# 問題をランダムに選ぶ 14def click_btn(): 15 global Q 16 Q = random.randint(0, 5) 17 label["text"] = rank[Q] 18 19def init(): # 初期化 20 click_btn() 21 entry.delete(0, tkinter.END) # entryの中身を全て削除 22 23def ans(event): 24 answer = entry.get() 25 if answer == r_ans[Q]: # 条件式が正しいか確認する 26 judge["text"] = "正解です‼︎" 27 else: 28 judge["text"] = "不正解です‼︎" 29 30root = tkinter.Tk() 31root.title("昨年のセ・リーグ順位は?") 32root.resizable(False, False) 33canvas = tkinter.Canvas(root, width=800, height=492) 34canvas.pack() 35gazou = tkinter.PhotoImage(file="images/game-main.png") 36canvas.create_image(400, 246, image=gazou) 37 38 39# ラベルを使って文字を画面に出す 40label = tkinter.Label(root, text="??", font=("Times New Roman", 40), bg="white") 41label.place(x=300, y=60) 42 43# Entryを出現させる 44entry = tkinter.Entry(width=10, font=("Times New Roman", 30), bg="white") 45entry.insert(tkinter.END, "球団名") 46entry.place(x=300, y=120, width=200, height=40) 47 48# 決定ボタン 49decide = tkinter.Button(text="決定", width=20, font=("Times New Roman", 24)) 50decide.bind("<Button-1>", ans) 51decide.place(x=500, y=120, width=100, height=40) 52 53# 問題を変えるボタン 54button = tkinter.Button(text=u"次の問題へ", font=("Times New Roman", 36), command=init, fg="skyblue") 55button.place(x=300, y=300) 56 57# 成否の出力に利用するラベル 58judge = tkinter.Label(text=u"", font=("", 12)) 59judge.place(x=300, y=160) 60 61root.mainloop() 62
試したこと
類似した質問に記載されていたPillowをインストールしましたが、表示されませんでした。
IDLEでは正常に表示されています。
ターミナルで確認したこと
python -V → Python 3.9.1
pyenv install 3.9.1 → 3.9.1 already exists
pip list
↓
Pillow 8.2.0
pip 21.1.1
setuptools 56.1.0
補足情報(FW/ツールのバージョンなど)
macOS Big Sur 11.3.1
回答1件
あなたの回答
tips
プレビュー