Is there a way I can take a screenshot of the right half of my pygame window?
I\'m making a game using pygame and I need to take a snapshot of the screen but not the
I would do something like:
example = pygame.Surface(screen.get_width()/2, 0)
Then later on when you want to take the screenshot do:
pygame.image.save(example, "example.jpg")