gpt4 book ai didi

python - pygame 图像拒绝加载

转载 作者:行者123 更新时间:2023-11-28 23:00:14 27 4
gpt4 key购买 nike

代码:

import pygame, sys

def load ():
image = pygame.image.load ('ShrinSprite.jpg')
return image, image.get_rect ()


class Sprite (pygame.sprite.Sprite):
def __init__ (self):
pygame.sprite.Sprite.__init__ (self)
self.image, self.rect = load ()

sprite = Sprite ()
allsprites = pygame.sprite.RenderClear ((sprite))

Surface = pygame.display.set_mode ((400, 400), 0, 32)

while True:
Surface.fill ((255, 255, 255))
allsprites.draw (0, 0)

for event in pygame.event.get ():
if event.type == QUIT:
pygame.quit ()
sys.exit (0)

if event.type == KEYDOWN:
allsprites.draw (0, -5)
allsprites.clear ()

pygame.display.update ()

错误提示无法加载图片:

pygame.error: Could not load 'ShrinSprite.jpg'

虽然图片和程序在同一个目录下,但是还是一直出现这个错误

最佳答案

这通常发生在您尝试在运行程序后向 shell 输入命令时。要加载它,只需重新保存程序即可。

如果这有效,请告诉我。

关于python - pygame 图像拒绝加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12341148/

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