如何在tkinter的另一个窗口中放置图像?

时间:2018-08-05 06:47:04

标签: python image tkinter python-3.7

我想使用tkinter在第二个窗口中放置图像,在第一个窗口中代码运行良好,但是第二个窗口什么也不显示。

在这一部分中,我将导入必要的模块:

from tkinter import filedialog, Tk, Frame, Label, PhotoImage, Button
from PIL import  Image
from tkinter import*
import tkinter as tk

然后创建主体窗口:

raiz = Tk()
raiz.title("ventana")

然后我创建框架并将图像放入框架中

 miFrame = Frame()
 miFrame.pack()
 miFrame.config(width="1400", heigh=("1200"))

 fondo=tk.PhotoImage(file="fondoF.png")
 fondo=fondo.subsample(1,1)
 label=tk.Label(miFrame,image=fondo)
 label.place(x=0,y=0,relwidth=1.0,relheight=1.0)

然后单击一个按钮,将调用第二个窗口功能:

 btn3 = Button(raiz, text="boton")
 btn3.place(x=500, y=500)
 btn3.config(command=abrirventana2)

这里有打开第二个窗口的功能,在这里(我想)是我要放置图像的位置。

此部分还具有两个名为mih的按钮,此按钮在此同时不执行任何操作,而ok则调用该函数以关闭第二个窗口:

def abrirventana2():
 raiz.deiconify()
 ventana2=tk.Toplevel()
 ventana2.geometry('500x500')
 ventana2.title("ventana2")
 ventana2.configure(background="white")
 fondov=tk.PhotoImage(file="xxx.gif")
 label1=tk.Label(ventana2,image=fondov)
 label1.place(x=50,y=50,relwidth=5.0,relheight=5.0)
 mensaje=tk.Label(ventana2,text="funciona")
 mensaje.pack(padx=5,pady=5,ipadx=5,ipady=5,fill=tk.X)
 boton1=tk.Button(ventana2,text='mih')
 boton1.pack(side=tk.TOP)
 boton2=tk.Button(ventana2,text='ok',command=ventana2.destroy)
 boton2.pack(side=tk.TOP)

关闭第二个窗口的功能:

def cerrarventana2():
    ventana.destroy()

我使用mainloop使窗口保持打开状态

 raiz.mainloop()

注意:我已经尝试在第二个窗口中创建框架,但是没有用。

1 个答案:

答案 0 :(得分:1)

为我以前的错误答案表示歉意。 图像未显示的原因是由于您未创建对其的引用。如果您不创建引用,则图像将被垃圾收集,不会删除它,但从某种意义上说,只是在GUI上呈现了一个空白的占位符。

为了正确显示图像,您需要在显示图像的代码内添加对图像的引用。 因此,您现在拥有:

fondov=tk.PhotoImage(file="giphy.gif") label1=tk.Label(ventana2,image=fondov) label1.image = fondov label1.pack()

  

({label1.image = fondov是参考)

很抱歉给您带来混乱。这应该起作用。