如何在PyPy中使用PIL?

时间:2011-02-01 15:47:03

标签: python python-imaging-library pypy

我搜索了一下但我找不到一个tuto来使用PyPy的PIL。根据PyPy的博客,支持PIL。

  • 我在PYTHONPATH中安装了PIL。
  • 下载后,请点击制作2个.pyd文件:_imaging.pyd和_imagingmath.pyd。
  • 安装完成后,我将%PYTHONPATH%/ lib / site-packages / PIL复制到我的PyPy site-packages目录。
  • 当我运行我的脚本(使用PIL)时,它说它无法导入_imaging C模块。

我该怎么做?

编辑: 我在Windows 7 x64(python 2.7.1 32bits)上运行它

这里是追溯(pypy 1.4.1 windows binary):

Traceback (most recent call last):
  File "app_main.py", line 53, in run_toplevel
  File "tools\python\gen_images.py", line 52, in <module>
    main()
  File "tools\python\gen_images.py", line 44, in main
    image = Image.open(file)
  File "d:\pypy\site-packages\PIL\Image.py", line 1965, in open
    return factory(fp, filename)
  File "d:\pypy\site-packages\PIL\ImageFile.py", line 91, in __init__
    self._open()
  File "d:\pypy\site-packages\PIL\GifImagePlugin.py", line 97, in _open
    self.seek(0) # get ready to read first frame
  File "d:\pypy\site-packages\PIL\GifImagePlugin.py", line 152, in seek
    self.dispose = Image.core.fill("P", self.size,
  File "d:\pypy\site-packages\PIL\Image.py", line 37, in __getattr__
    raise ImportError("The _imaging C module is not installed")
ImportError: The _imaging C module is not installed

2 个答案:

答案 0 :(得分:12)

我这样做了:

$ /opt/pypy-1.4.1/bin/virtualenv test
$ cd test
$ bin/pip install PIL
...
--------------------------------------------------------------------
PIL 1.1.7 SETUP SUMMARY
--------------------------------------------------------------------
version       1.1.7
platform      linux2 2.5.2 (e503e483e9ac, Dec 21 2010, 12:02:29)
              [PyPy 1.4.1]
--------------------------------------------------------------------
*** TKINTER support not available
--- JPEG support available
--- ZLIB (PNG/ZIP) support available
--- FREETYPE2 support available
*** LITTLECMS support not available
--------------------------------------------------------------------
... 
$ bin/pypy
Python 2.5.2 (e503e483e9ac, Dec 21 2010, 12:02:29)
[PyPy 1.4.1] on linux2
>>>> import Image
>>>> im = Image.open('/path/to/file.jpg')
>>>> outfile = open('/path/to/file.png', 'wb')
>>>> im.save(outfile, 'png')

像魅力一样工作。那样做吧。 :)

答案 1 :(得分:1)

我没有安装easy_install或pip,因此请按照pip's documentation中的说明进行操作:

wget https://bootstrap.pypa.io/get-pip.py
pypy get-pip.py
pypy -m pip install pillow