图像未显示在Tkinter窗口中

时间:2017-05-04 13:11:23

标签: python python-2.7 tkinter

我正在尝试在窗口中显示图像。我尝试了两种方法,使用类和单个片段。 我很困惑,为什么这显示正确的输出:

from Tkinter import *
from PIL import ImageTk, Image

root = Tk()
picture="path/image.jpg"
image = Image.open(picture).resize((350, 350), Image.ANTIALIAS)
print(image)
pic = ImageTk.PhotoImage(image)
panel = Label(root, image = pic)
panel.grid(sticky="news")
root.mainloop()

但不是下面的那个?

from Tkinter import *
from PIL import ImageTk, Image

class DisplayImage():

    def __init__(self, root):
        self.root = root

    def stoneImg(self, picture="path/default_image.png"):
        image = Image.open(picture).resize((350, 350), Image.ANTIALIAS)
        pic = ImageTk.PhotoImage(image)

        panel = Label(self.root, image=pic)
        panel.grid(sticky="news")

if __name__ == '__main__':
    root = Tk()
    DisplayImage(root).stoneImg()
    root.mainloop()

1 个答案:

答案 0 :(得分:4)

不同之处在于,在第二个示例中,图片仅由局部变量引用,该变量在函数结束时消失。垃圾收集在Tkinter中有点奇怪,因为所有与GUI相关的对象都存在于Python控件之外的嵌入式Tcl解释器中。

简单的解决方案是添加像panel.image = pic这样的行,这样只要小部件本身存在,就会存在对图像的引用。