1

我现在在stackoverflow上搜索了一段时间以找到答案,但没有任何运气!我在我的 Mac上使用tkinter和显示图像时遇到问题。PIL他们只是无法在正在运行的应用程序中找到图像。这是我 Python 课程的最后一部分,我真的需要让它发挥作用来完成这门课程。这是我收到的错误消息。

Traceback (most recent call last):
File "/Users/andrej/Documents/untitled", line 19, in <module>
imageFile = Image.open("Signori.png")

这是我的代码:

import Image
import ImageTk
import Tkinter

def new():
wind = Tkinter.Toplevel()
wind.geometry('600x600')
imageFile2 = Image.open("nesta.png")
image2 = ImageTk.PhotoImage(imageFile2)

panel2 = Tkinter.Label(wind , image=image2)
panel2.place(relx=0.0, rely=0.0)
wind.mainloop()

master = Tkinter.Tk()
master.geometry('600x600')
imageFile = Image.open("Signori.png")
image1 = ImageTk.PhotoImage(imageFile)

panel1 = Tkinter.Label(master , image=image1)
panel1.place(relx=0.0, rely=0.0)
B = Tkinter.Button(master, text = 'New image', command = new).pack()
master.mainloop()
4

2 回答 2

0

改用这个:

    from PIL, import Images, ImageTk

如果您的图像无法在框架中显示,请改用标签:

    your_image = ImageTk.PhotoImage(image.open('an image.png')) 
    # note the image has to be in the same directory as your project, 
    # then 
    your_label = Label(master=root, image=your_image) 
    your_label.pack()
于 2020-07-13T23:20:02.547 回答
-1

从 PIL 使用它,导入图像,ImageTk 然后你的图像不能显示在框架中,使用标签代替

your_image = ImageTk.PhotoImage(image.open('an image.png')) # 注意 图片必须和你的项目在同一个目录下, # then your_label = Label(master=root, image=your_image) your_label.pack ()

于 2020-07-08T15:46:23.423 回答