当我尝试在 pygame 中对图像进行 blit 时,图像 blits 比实际图像小,我的简化代码是
import pygame
pygame.init()
screen = pygame.display.set_mode((1176,674),0,32)
background = pygame.image.load("picture.jpg").convert()
while True:
screen.blit(background, (0,0))
pygame.display.flip()
生成的图像大约是它应该大小的一半