19
#import statements
from Tkinter import *
import tkMessageBox
import tkFont
from PIL import ImageTk,Image

导入图像的代码:

app = Tk()
app.title("Welcome")
image2 =Image.open('C:\\Users\\adminp\\Desktop\\titlepage\\front.gif')
image1 = ImageTk.PhotoImage(image2)
w = image1.width()
h = image1.height()
app.geometry('%dx%d+0+0' % (w,h))
#app.configure(background='C:\\Usfront.png')
#app.configure(background = image1)

labelText = StringVar()
labelText.set("Welcome !!!!")
#labelText.fontsize('10')

label1 = Label(app, image=image1, textvariable=labelText,
               font=("Times New Roman", 24),
               justify=CENTER, height=4, fg="blue")
label1.pack()

app.mainloop()

此代码不起作用。我想导入背景图像。

4

3 回答 3

36

一种简单的方法是使用place图像作为背景图像。这是place真正擅长做的事情。

例如:

background_image=tk.PhotoImage(...)
background_label = tk.Label(parent, image=background_image)
background_label.place(x=0, y=0, relwidth=1, relheight=1)

然后,您可以像往常一样gridpack在父级中的其他小部件。只需确保首先创建背景标签,使其具有较低的堆叠顺序。

注意:如果您在函数内部执行此操作,请确保保留对图像的引用,否则该图像将在函数返回时被垃圾收集器销毁。一种常见的技术是将引用添加为标签对象的属性:

background_label.image = background_image
于 2012-04-16T20:45:22.077 回答
5

用于设置背景图像的 Python 3 的简单 tkinter 代码。

from tkinter import *
from tkinter import messagebox
top = Tk()

C = Canvas(top, bg="blue", height=250, width=300)
filename = PhotoImage(file = "C:\\Users\\location\\imageName.png")
background_label = Label(top, image=filename)
background_label.place(x=0, y=0, relwidth=1, relheight=1)

C.pack()
top.mainloop
于 2016-12-27T06:49:00.177 回答
-1

你可以使用这个:

root.configure(background='your colour')

例子:-

import tkinter
root=tkiner.Tk()
root.configure(background='pink')
于 2020-08-18T02:58:15.740 回答