我有一个带有标签的窗口作为我的框架。我这样做是因为我想要背景图像。但现在我对我使用过的其他标签遇到了麻烦。我用来实际标记事物的其他标签没有透明背景。有没有办法让这些标签的背景变得透明?
import Tkinter as tk
root = tk.Tk()
root.title('background image')
image1 = Tk.PhotoImage(file='image_name.gif')
# get the image size
w = image1.width()
h = image1.height()
# make the root window the size of the image
root.geometry("%dx%d" % (w, h))
# root has no image argument, so use a label as a panel
panel1 = tk.Label(root, image=image1)
panel1.pack(side='top', fill='both', expand='yes')
# put a button/label on the image panel to test it
label1 = tk.Label(panel1, text='here i am')
label1.pack(side=Top)
button2 = tk.Button(panel1, text='button2')
button2.pack(side='top')
# start the event loop
root.mainloop()
我认为它可以帮助,全黑就会透明
root.wm_attributes('-transparentcolor','black')
Tk 中不支持透明背景。
如果您正在处理图像并向其添加文本,我认为最方便的方法是利用
Canvas
小部件。
tkinter Canvas
小部件具有 .create_image(x, y, image=image, options)
和 .create_text(x, y, text="Some text", options)
等方法。
使用这个:
from tkinter import *
main=Tk()
photo=PhotoImage(file='test.png')
Label(main,image=photo,bg='grey').pack()
#your other label or button or ...
main.wm_attributes("-transparentcolor", 'grey')
main.mainloop()
这个工作如果使用
bg='grey'
你可以在第7行更改它
祝你好运:)
我的也是。我需要它作为图像上的标签,但它只是在窗口上切了一个洞。