透明窗口背景 (Python Tkinter)
我需要的是一个透明的 tkinter 窗口,
但此窗口上显示的图像则不然。
我见过这个
w.attributes('-alpha', 0.1)
东西,但这也使图像变得透明。
我只需要窗口的背景透明,
使窗口上的图像具有透明部分,
将通过这些部分显示用户桌面。
无论如何,Python 有办法做到这一点吗?
(规格:
Python 2.7.1
Tkinter
照片图像
Windows7)
What I need is a tkinter window that is transparent,
but with a image displayed on this window is not.
I've seen the
w.attributes('-alpha', 0.1)
thing, but that makes the image transparent as well.
I need just the background of the window transparent,
so that an image on the window that has transparent parts,
will show the Users desktop through these parts.
Are there anyways to do this in Python?
(specs:
Python 2.7.1
Tkinter
PhotoImage
Windows7)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议另一个 ui 库
几乎与 是否可以创建一个没有框架、没有背景的 Tkinter 窗口?
我刚刚了解到 pygame 不支持窗口透明度,但根据上一篇文章 此处 wxPython 会执行此操作(如果可以选择
更多链接):
在桌面上的 Windows 下绘制(我认为你可以适应)
讨论多种实现方式
I would suggest another ui library
pretty much a duplicate to Is it possible to create a Tkinter Window with no frame, and no background?
I just learnt that pygame don't support window transparency but according to the last post here wxPython does if that's an option
more links:
draws under windows over desktop(you can adapt I think)
Discussion about various ways to implement