Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
"""
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pygame #size #image
ADD COMMENT
Topic
Name
4+5 =