前提・実現したいこと
大学の授業で、Jupiternotebookでpython、tkinterを使いGUIを作成しています。
ボタンを押すと、格言と画像がランダムに表示されるようにしたいです。
発生している問題・エラーメッセージ
ボタンを押すと、格言はランダムに表示されるのですが、画像が表示されません。
Exception in Tkinter callback Traceback (most recent call last): File "C:\Users\trgym\anaconda3\lib\site-packages\PIL\Image.py", line 2882, in open fp.seek(0) AttributeError: 'list' object has no attribute 'seek' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\trgym\anaconda3\lib\tkinter\__init__.py", line 1883, in __call__ return self.func(*args) File "<ipython-input-68-4ed79da84c90>", line 16, in kakugen_modoki img = Image.open(file_nm).resize((95,75)) File "C:\Users\trgym\anaconda3\lib\site-packages\PIL\Image.py", line 2884, in open fp = io.BytesIO(fp.read()) AttributeError: 'list' object has no attribute 'read'
該当のソースコード
Python
1def kakugen_modoki(): 2 3 lst_ax = ['人生に失敗がないと人生を失敗する','未来とは今である','尊厳を保つためには金は必ずしも必要ではない',] 4 lst_image = ['melon.png','orange.png','ichigo.png'] 5 6 txt.configure(state='normal') 7 8 txt.delete(0,tk.END) 9 ax = random.choices(lst_ax,k=1) 10 txt.insert(tk.END,ax) 11 12 txt.configure(state='readonly') 13 14 global img 15 file_nm = random.choices(lst_image,k=1) 16 img = Image.open(file_nm).resize((95,75)) 17 img = ImageTk.PhotoImage(image=img) 18 19 cv.create_image(5,5,image=img,anchor=tk.NW)
import tkinter as tk from PIL import Image, ImageTk import random root = tk.Tk() root.geometry("400x250") root.title("おためし開運") root.configure(bg='#ffffe0') lvl = tk.Label(text="ありがたいおことば") lvl.place(x=60,y=70) txt = tk.Entry() txt.configure(state='readonly',width=50) txt.place(x=60,y=100) btn = tk.Button(root,text="ぽんっ", command=kakugen_modoki) btn.place(x=60,y=150) cv = tk.Canvas(bg='#ffb47f',width=100,height=80) cv.place(x=200,y=10) root.mainloop()
試したこと
使う画像を、このプログラムが保存されている
C:\Users\ユーザー名\PythonProgramming
に保存しているのですが、
保存場所が問題なのかと考え、エラー内にでてきた
C:\Users\ユーザー名\anaconda3\Lib\tkinter
にも保存してみたが、変わらずこのエラーが表示された。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。