在Mac OS X 10.7.3的Pygame issuse(Pygame issuse on ma

2019-09-16 10:24发布

于是,我开始在一台Mac狮子蟒蛇,我试图让我的第一个程序具有图像:这是程序的代码

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

可能是什么这个问题的原因

INFO:而不是像我以前的表面和它的工作好。 我怀疑问题可能与我的pygame的安装,但我不知道

Answer 1:

您的代码实际工作“开箱即用”我在Python 2.6中键(Mac OS X 10.6)。

如果您使用的是与你的操作系统提供的Python版本(苹果2.7),请确保你使用这个包: pygame的为苹果提供的Python -的Mac OS X 10.7 。



文章来源: Pygame issuse on mac os x 10.7.3