如何在PyPy中使用PIL?

Syl*_*Syl 8 python pypy python-imaging-library

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

  • 我在PYTHONPATH中安装了PIL.
  • 下载后,pip制作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二进制):

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
Run Code Online (Sandbox Code Playgroud)

Len*_*bro 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')
Run Code Online (Sandbox Code Playgroud)

工作就像一个魅力.那样做吧.:)