web-dev-qa-db-ja.com

Tkinter Labelウィジェットの画像を更新する方法は?

Tkinterラベルの画像を交換できるようにしたいのですが、ウィジェット自体を交換する以外は、どうすればよいかわかりません。

現在、次のような画像を表示できます。

import Tkinter as tk
import ImageTk

root = tk.Tk()
img = ImageTk.PhotoImage(Image.open(path))
panel = tk.Label(root, image = img)
panel.pack(side = "bottom", fill = "both", expand = "yes")
root.mainloop()

しかし、ユーザーがENTERキーを押すと、画像を変更したいと思います。

import Tkinter as tk
import ImageTk

root = tk.Tk()

img = ImageTk.PhotoImage(Image.open(path))
panel = tk.Label(root, image = img)
panel.pack(side = "bottom", fill = "both", expand = "yes")

def callback(e):
    # change image

root.bind("<Return>", callback)
root.mainloop()

これは可能ですか?

30
skeggse

メソッド_label.configure_は、panel.configure(image=img)で機能します。

忘れていたのは、ガベージコレクションがイメージを削除しないようにするための_panel.image=img_を含めることでした。

以下は新しいバージョンです。

_import Tkinter as tk
import ImageTk


root = tk.Tk()

img = ImageTk.PhotoImage(Image.open(path))
panel = tk.Label(root, image=img)
panel.pack(side="bottom", fill="both", expand="yes")

def callback(e):
    img2 = ImageTk.PhotoImage(Image.open(path2))
    panel.configure(image=img2)
    panel.image = img2

root.bind("<Return>", callback)
root.mainloop()
_

元のコードは、画像がグローバル変数imgに保存されているため機能します。

45
skeggse

それを行う別のオプション。

オブジェクト指向プログラミングと対話型インターフェイスを使用してイメージを更新します。

from Tkinter import *
import tkFileDialog
from tkFileDialog import askdirectory
from PIL import  Image

class GUI(Frame):

    def __init__(self, master=None):
        Frame.__init__(self, master)
        w,h = 650, 650
        master.minsize(width=w, height=h)
        master.maxsize(width=w, height=h)
        self.pack()

        self.file = Button(self, text='Browse', command=self.choose)
        self.choose = Label(self, text="Choose file").pack()
        self.image = PhotoImage(file='cualitativa.gif')
        self.label = Label(image=self.image)


        self.file.pack()
        self.label.pack()

    def choose(self):
        ifile = tkFileDialog.askopenfile(parent=self,mode='rb',title='Choose a file')
        path = ifile.name
        self.image2 = PhotoImage(file=path)
        self.label.configure(image=self.image2)
        self.label.image=self.image2


root = Tk()
app = GUI(master=root)
app.mainloop()
root.destroy()

使用するデフォルト画像の「cualitativa.jpg」を置き換えます。

0
Daniel Santos