Mac OS X 10.7.3上的Pygame问题

时间:2012-04-09 05:42:01

标签: python macos image pygame

所以,我在mac Lion中开始使用python,我正在尝试用图像制作我的第一个程序: 这是程序的代码

import pygame, sys
from pygame.locals import *

pygame.init()

FPS = 30
fpsClock = pygame.time.Clock()

DISPLAYSURF = pygame.display.set_mode((400, 300), 0, 32)
pygame.display.set_caption('Animation');

WHITE = (255, 255, 255)
catImg = pygame.image.load("cat.png")
catx = 10
caty = 10
direction = 'right'

while True:
    DISPLAYSURF.fill(WHITE)

    if direction == 'right':
        catx += 5
        if catx == 280:
            direction = 'down'
    elif direction == 'down':
        caty += 5
        if caty == 220:
            direction = 'left'
    elif direction == 'left':
        catx -= 5
        if catx == 10:
            direction = 'up'
    elif direction == 'up':
        caty -= 5
        if caty == 10:
            direction = 'right'

    DISPLAYSURF.blit(catImg, (catx, caty))

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

    pygame.display.update()
    fpsClock.tick(FPS)

当程序运行时,出现错误:

Traceback (most recent call last):
  File "catanimation.py", line 13, in <module>
    catImg = pygame.image.load("cat.png")
pygame.error: File is not a Windows BMP file

导致此问题的原因可能是什么

信息:我使用表面而不是图像而且效果很好。我怀疑问题可能与我的pygame安装有关,但我不确定

1 个答案:

答案 0 :(得分:3)

在Python 2.6(Mac OS X 10.6)上,您的代码实际上是“开箱即用”。

如果您使用的是操作系统附带的Python版本(Apple 2.7),请确保使用此软件包:Pygame for Apple supplied Python - Mac OS X 10.7