pygame无法加载图片

时间:2016-11-04 23:26:31

标签: python macos python-3.x pygame

import pygame, sys
from pygame.locals import *

pygame.init()
window = pygame.display.set_mode((400, 300))

my_image = pygame.image.load(r'/Users/Humberto/documents/python/games/alien')
posX, posY = 200, 150

window.blit(my_image, (posX, PosY))


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


    pygame.display.update()

我正在尝试加载位于同一文件夹中的图像,它将返回错误说pygame.error:无法打开/ Users / Humberto / documents / python / games / alien我试过写过.png扩展,也使用/和//编写整个路径,并尝试原始字符串。我该如何解决这个问题?

0 个答案:

没有答案