改变图像的大小

时间:2015-01-22 21:10:38

标签: pygame

我试图在我的python游戏中放一张照片,到目前为止我有这个:

picture = pygame.image.load(picture.jpg)
screen.fill(BLACK)
screen.blit(picture, (0,0))

这成功添加了图片,但占据了整个屏幕。是否可以减小这张照片的尺寸? 感谢您的帮助。

1 个答案:

答案 0 :(得分:4)

看起来您可以使用transform.scale缩放图像。

picture = pygame.transform.scale(picture, (1280, 720))

你也尝试过使用screen.blit中的参数吗? 我认为而不是将一个点传递给" Dest"参数你可以传递一个矩形。

screen.blit(picture), (0,0,width,height))