change dimensions of a foto pygame code example
Example: pygame size of image
image = pygame.image.load("path/to/file.png") # load image
width, height = image.get_width(), image.get_height() # get size
print(width, height) # print size
"""
OUTPUT:
(50, 50)
"""