gpt4 book ai didi

python - 如何让图像出现在python/pygame中

转载 作者:太空狗 更新时间:2023-10-29 21:38:04 24 4
gpt4 key购买 nike

我正在尝试学习使用 pygame 制作基本游戏。我想导入并显示 .png 格式的图像。到目前为止,我的尝试是:

import pygame
from pygame.locals import*
pygame.image.load('clouds.png')

white = (255, 64, 64)
w = 640
h = 480
screen = pygame.display.set_mode((w, h))
screen.fill((white))
running = 1

while running:
screen.fill((white))

pygame.display.flip()

图像 (clouds.png) 与文件位于同一文件夹中。当我尝试运行它时出现错误:

Traceback (most recent call last):
File "C:\Users\Enrique\Dropbox\gamez.py", line 3, in <module>
pygame.image.load('clouds.png')
error: Couldn't open clouds.png

最佳答案

给你。它将图像 block 化为 0,0。您的另一个问题是您的 pyimage 似乎不支持 png

import pygame
from pygame.locals import*
img = pygame.image.load('clouds.bmp')

white = (255, 64, 64)
w = 640
h = 480
screen = pygame.display.set_mode((w, h))
screen.fill((white))
running = 1

while running:
screen.fill((white))
screen.blit(img,(0,0))
pygame.display.flip()

关于python - 如何让图像出现在python/pygame中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8767129/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com