我试图让基地的地图,我将使用一个游戏,但我不能把影像加载到屏幕上。 我试着在一个绝对的文件路径与likesame字母大小写的图像发送中,我试图改变形象的名字,我已经试过装在我做其他工作的方案不同的图像,我尝试了把图像在同一目录中的脚本本身。 没有什么还没有工作。 我看着谁是有同样的问题的人几个线程,比如为什么我的pygame的图像不加载? 我无法找到答案我的问题。 图像将不会加载。 下面的代码:
import sys, pygame
from pygame.locals import *
pygame.init()
size = (600, 400)
screen = pygame.display.set_mode(size)
pygame.display.set_caption("Practice Map")
walls = pygame.image.load("C:\Users\dylan\Desktop\Practice Game\brick.jpg")
x = 0
y = 0
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
if event.type == KEYDOWN and event.key == K_ESCAPE:
sys.exit()
if event.type == KEYDOWN and event.key == K_UP:
y -= 20
if event.type == KEYDOWN and event.key == K_DOWN:
y += 20
if event.type == KEYDOWN and event.key == K_LEFT:
x -= 20
if event.type == KEYDOWN and event.key == K_RIGHT:
x += 20
screen.fill((0,0,0))
screen.blit(walls,(x, 330))
# more bricks to go here later
pygame.display.flip()
#end
和错误:
Traceback (most recent call last):
File "C:\Users\dylan\Desktop\Practice Game\move.py", line 8, in <module>
walls = pygame.image.load("C:\Users\dylan\Desktop\Practice Game\brick.jpg")
error: Couldn't open C:\Users\dylan\Desktop\Practice Gamerick.jpg
我使用Python 2.6 pygame的1.9 Python版本2.6 IDLE作为我的编辑器。