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 Surface 对象,然后将字节反序列化回相同对象的最简单方法是什么?从文档中我猜想get_view或get_buffer可能有用,但我不知道如何。
get_view
get_buffer
pygame.surfarray怎么样
您可以使用pygame.surfarray.array3d()获取像素数组 并pygame.surfarray.make_surface()再次创建表面。
pygame.surfarray.array3d()
pygame.surfarray.make_surface()
你可以使用pickle.
pickle
如果您只需要在磁盘上保存表面然后使用pygame.image.save(),pygame.image.load()
pygame.image.save()
pygame.image.load()