Mac OSX中Pygams中的Windows BMP文件错误

时间:2018-09-02 21:21:41

标签: python pygame

我遇到pygame的基本问题。我想加载该教程中给出的简单图像。

import pygame
catImg = pygame.image.load('cat.png')

并出现以下错误:

error: File is not a Windows BMP file   

我无数次地看到了这个问题,并提出了重新安装pygame和安装映像包(PILPillow)的答案。我尝试了所有这些,但仍然无法正常工作。 到目前为止,我已经多次重新安装了pygame,但它仍然不支持更多格式。

>>pygame.image.get_extended()
>> 0

我正在使用Python 2.7.14 |Anaconda custom (64-bit)| (default, Oct 5 2017, 02:28:52)

我用PIL, Pillow安装了conda

OSX是Mac OSX High Sierra 10.13.14

$type python
python is hashed (/Users/username/anaconda2/bin/python)

而我只是这样做:

$ python
Python 2.7.14 |Anaconda custom (64-bit)| (default, Oct  5 2017, 02:28:52) 
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame
>>> pygame.image.load('cat.png')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
pygame.error: File is not a Windows BMP file

或在jupyter中执行相同操作,结果是相同的。

$ python -V
Python 2.7.14 :: Anaconda custom (64-bit)

0 个答案:

没有答案