如何在tinter中创建半透明窗口?

问题描述 投票:0回答:2

我正在尝试在 Tkinter 中创建一个半透明窗口,就像 Windows 11 中的那样

如何做到这一点?如果我们做不到这一点,我们可以捕获屏幕的一部分并使用 cv2 对其进行模糊并将其用作持续更新的背景吗?

python user-interface tkinter window
2个回答
1
投票

不,这不能直接通过 Tkinter 实现。但是:

如果你使用PIL,你可以获取窗口的位置,然后截图,然后模糊它,然后将其设为你的应用程序背景。但如果用户尝试移动/调整应用程序大小,这将不起作用。但这里是一个粗略的代码:

from tkinter import *
from PIL import ImageTk, ImageGrab, ImageFilter # pip install Pillow

root = Tk()
root.overrideredirect(1) # Hide the titlebar etc..

bg = Canvas(root)
bg.pack(fill='both',expand=1)
root.update()

# Get required size and then add pixels to remove title bar and window shadow
left   = root.winfo_rootx()
top    = root.winfo_rooty()
right  = left + root.winfo_width()
bottom = top  + root.winfo_height()

root.withdraw() # Hide the window
img = ImageGrab.grab((left,top,right,bottom)) # Get the bg image
root.deiconify() # Show the window

img = img.filter(ImageFilter.GaussianBlur(radius=5)) # Blur it 
img = ImageTk.PhotoImage(img)
bg.create_image(0,0, image=img, anchor='nw') # Show in canvas

label = Label(root,text='This is a translucent looking app')
bg.create_window(bg.winfo_width()/2,bg.winfo_height()/2,window=label) # Position in the center

root.mainloop()

使用 Tkinter 输出:


如果您想追求现代外观,Tkinter 不是最佳选择,请使用 PyQt 并选中 qtacryl

PyQt 输出:


1
投票

对于实时模糊(本机 Windows 模糊),请使用 “BlurWindow”

python -m pip install BlurWindow

from tkinter import *
from ctypes import windll

from BlurWindow.blurWindow import blur

root = Tk()
root.config(bg='green')

root.wm_attributes("-transparent", 'green')
root.geometry('500x400')

root.update()

hWnd = windll.user32.GetForegroundWindow()
blur(hWnd)



def color(hex):
    hWnd = windll.user32.GetForegroundWindow()
    blur(hWnd,hexColor=hex)
    

e = Entry(width=9)
e.insert(0,'#12121240')

e.pack()
b = Button(text='Apply',command=lambda:[color(e.get())])
b.pack()


root.mainloop()
© www.soinside.com 2019 - 2024. All rights reserved.