Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我正在使用图像并且我想知道图像在文件中的大小。
有一个函数可以获取图片的高度和宽度?
编辑:当然,我使用 pygame.image.load(PATH) 将图像加载到程序中。
我相信您需要先将图像加载为 Surface 才能获得其宽度和高度。你用foo = pygame.image.load(PATHNAME).
foo = pygame.image.load(PATHNAME)
然后,您可以通过使用 foo.get_rect() 创建一个 Rectangle 并询问该矩形来获取宽度和高度。
import pygame foo = pygame.image.load(PATH).get_rect().size print(foo)
返回元组中的大小