在pygame中显示背景图片时有时候会出现背景图片与显示屏幕大小不一的情况,这个程序应该能帮到你。 文章来源地址https://www.toymoban.com/news/detail-736090.html
import pygame
# 初始化pygame
pygame.init()
# 设置窗口大小和标题
screen_width, screen_height = 800, 600
screen = pygame.display.set_mode((screen_width, screen_height))
pygame.display.set_caption("显示图片")
# 加载图片
image = pygame.image.load("test.jpg")
# 缩放图片到窗口大小
image = pygame.transform.scale(image, (screen_width, screen_height))
# 获取图片的大小
image_width, image_height = image.get_size()
# 计算图片在窗口中的位置
image_x = (screen_width - image_width) // 2
image_y = (screen_height - image_height) // 2
# 在窗口中央显示图片
screen.blit(image, (image_x, image_y))
# 更新窗口
pygame.display.flip()
# 等待退出
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
文章来源:https://www.toymoban.com/news/detail-736090.html
到了这里,关于pygame中将图片填充到适合显示屏幕大小的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!