Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种在桌面上绘制动画的方法。没有窗框和透明背景。
我在 Windows XP 中使用 Python,但它不必是跨平台的,尽管它会是一个不错的奖励。
有谁知道可以做到这一点的python库?
如果你想要一个无框窗口,有几个选择。例如,pygame 可以使用以下标志初始化:
pygame.init() screen = pygame.display.set_mode(size=(640,480), pygame.NOFRAME)
但是,如果您正在寻找透明表面,您的问题并不清楚。