Pygame Error: File is not a windows BMP file

Pygame Error: File is not a windows BMP file

我在执行此 tutorial 时遇到问题。我运行它之后,弹出一个错误信息

"ball = pygame.image.load("...) Error:File is not a Windows BMP file.

我在 OSX 10.9.5

我高度怀疑我搞砸了所有必要组件的安装,我安装时的步骤如下:

  1. 删除Python3并重新安装Python2.7 32位版本(使用.dmg)
  2. 使用 .dmg 安装 pygame 包
  3. 被要求安装 X11,已安装 X11
  4. 打开 SDL framework .zip 并拖放到 Application/Library
  5. 中的文件夹中

我搞砸了吗?特别是对于 SDL?请告诉我解决方案,谢谢。

//尝试将图片文件放在同一目录下;将图像文件保存为 .bmp

我看到了link,把图片另存为ball.bmp(页面中的图片是gif格式)试试下面的代码:

import sys, pygame
pygame.init()

size = width, height = 320, 240
speed = [2, 2]
black = 0, 0, 0
screen = pygame.display.set_mode(size)

ball = pygame.image.load("ball.bmp")
ballrect = ball.get_rect()
while 1:
        for event in pygame.event.get():
            if event.type == pygame.QUIT: sys.exit()

        ballrect = ballrect.move(speed)
        if ballrect.left < 0 or ballrect.right > width:
            speed[0] = -speed[0]
        if ballrect.top < 0 or ballrect.bottom > height:
            speed[1] = -speed[1]

        screen.fill(black)
        screen.blit(ball, ballrect)
        pygame.display.flip()

对我来说效果很好。也许你应该将图片保存为.bmp 文件并重试。

我按照这里的解决方案 answer。前往 Macintosh HD/Library/Frameworks/..... 并删除其中的 pygame 文件夹并重新安装。