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.
有谁知道使用 pygame 将 .gif 图像加载到 python 中的简单方法?我尝试使用 'pygame.image.load(path)' 加载 .gif 图像,尽管只加载了第一帧,但它仍然有效。因为我不得不使用循环一次显示多个图像。
简单地说,你不能在 Pygame 中显示多帧 GIF,除非你使用额外的库。相反,爆炸你的 GIF。您必须手动完成所有操作,因为 Pygame 不控制流时间等,而这对于动画 GIF 是必需的。