如何在tkinter中使用图像作为背景?

时间:2012-04-15 00:24:47

标签: python tkinter

#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 个答案:

答案 0 :(得分:20)

一种简单的方法是使用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

答案 1 :(得分:3)

用于设置背景图像的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

答案 2 :(得分:0)

如果我想在图像上放两个按钮。我看不到按钮

refresh_token

答案 3 :(得分:0)

您可以使用root.configure(background ='your colour')示例:- {{1}}