如何在窗口上弹出图像Tkinter python3

时间:2016-11-25 23:19:07

标签: python python-3.x tkinter python-3.5

嘿,我正在按照教程https://www.youtube.com/watch?v=a1Y5e-aGPQ4进行操作,但我无法正常使用它。我在按菜单按钮时尝试添加图像:

from tkinter import *
from PIL import *

class Window(Frame):

    def __init__(self, master = None):
        Frame.__init__(self, master)

        self.master = master

        self.init_Window()

    def init_Window(self):
        self.master.title("GUI")

        self.pack(fill =BOTH, expand=1)

        #quitButton = Button(self, text = "Quit", command =      self.client_exit)
        #quitButton.place(x=0,y=0)

        menu = Menu(self.master)
        self.master.config(menu=menu)

        file=Menu(menu)
        file.add_command(label='Save',command= self.client_exit)
        file.add_command(label='Exit',command= self.client_exit)
        menu.add_cascade(label='File',menu=file)

        edit = Menu(menu)
        edit.add_command(label='Show Image', command=self.showImg)
        edit.add_command(label='Show Text', command=self.showTxt)
        menu.add_cascade(label='Edit',menu=edit)

    def showImg(self):
        load = Image.open('Pic.png')
        render = ImageTk.PhotoImage(load)

        img = Label(self, image=render)
        img.image = render
        img.place(x=0,y=0)

    def showTxt(self):
        text = Label(self,text='Hey')
        text.pack

    def client_exit(self):
        exit()



root = Tk()
root.geometry("400x300")
app = Window(root)

root.mainloop()

我已经尝试过在学校,StackOverflow和YouTube上查询约3天了,没有任何问题解决了我的问题,如果您需要更多信息,请询问。我收到错误代码:

 Exception in Tkinter callback
 Traceback (most recent call last):
 File "/usr/lib/python3.5/tkinter/__init__.py", line 1558, in __call__
 return self.func(*args)
 File "/root/Desktop/Python Programs/Tkinter.py", line 35, in showImg
 load = Image.open('pic.png')
 AttributeError: type object 'Image' has no attribute 'open'

2 个答案:

答案 0 :(得分:0)

您使用import *,因此您不知道自己是使用tkinter.Image还是PIL.Image。这就是为什么你不应该使用import *

尝试

from PIL import Image, ImageTk

答案 1 :(得分:-1)

图像有点棘手,一些提示:保持图像对象全局,避免垃圾回收,避免属性错误(通过阅读文档)。

在这个例子中我不使用PIL而是加载了一个gif图像

#!/usr/bin/python
#-*-coding:utf-8 -*

#Python 3
#must have a valid gif file "im.gif" in the same foldeer

from tkinter import *

Window=Tk()
ListePhoto=list()
ListePhoto.append(PhotoImage(file="im.gif"))

def Try():


    Window.title('image')
    Window.geometry('+0+0')
    Window.configure(bg='white')

    DisplayImage()

def DisplayImage():

    label_frame=LabelFrame(Window, relief='ridge', borderwidth=12, text="AnImage",
                         font='Arial 16 bold',bg='lightblue',fg='black')
    ListeBouttons=list()#Liste Vide pour les Radiobutton(s)

    RadioButton = Radiobutton(label_frame,text="notext",image=ListePhoto[0], indicatoron=0)
    RadioButton.grid(row=1,column=1)
    label_frame.pack(side="left")




if __name__ == '__main__':
    Try()