I tried to save a pygame.Surface but it doesn't let me, error
TypeError: can't pickle Surface objects
I can make it save surfaces? Or maybe there is another module that can save it ?
EXPLANATION:
a = pygame.Surface( (5,5) )
file = open("hello", "w")
pickle.dump(a, file)
I have classes which saves in them Surfaces.