I have a 200x200px image in pygame that I'd like to slice in half, so the 2 shapes would be 100x200px. Afterwards, I'd like to blit the 2 new images on the screen with a set amount of pixels in between them. How would an image be split/cropped in such a way?
EDIT - Fixed! I managed to figure this out by myself from using pygame.transform.chop()
and pygame.transform.rotate()
. Thanks for the help, though. I know a little more thanks to the help of Tankor Smash.