桌面图形-或“皮肤”图形 视窗
我正在寻找一种在桌面上绘制动画的方法。 无窗框且背景透明。
我在 Windows XP 中使用 Python,但它不一定是跨平台的,尽管这会是一个很好的好处。
有谁知道可以做到这一点的Python库吗?
I'm looking for a way to draw animations right on the desktop. No window frames and with transparent background.
I'm using Python in windows XP for it, but it doesn't have to be cross platform, although it'd be a nice bonus.
Does anyone know about a python library that can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要无框窗户,有多种选择。 例如,可以使用以下标志初始化 pygame:
不过,如果您正在寻找透明表面,您的问题并不清楚。
If you want a frameless window, there are several options. For example, pygame can be initialized with the following flag:
Your question doesn't make it clear if you're looking for a transparent surface, though.