当我尝试使用 PIL 打开 EPS 或 SVG 图像时遇到了几个问题。
开幕 EPS
from PIL import Image
test = Image.open('test.eps')
结束于:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\Lib\site-packages\PIL\Image.py", line 1965, in open
return factory(fp, filename)
File "C:\Python27\Lib\site-packages\PIL\ImageFile.py", line 91, in __init__
self._open()
File "C:\Python27\Lib\site-packages\PIL\EpsImagePlugin.py", line 206, in _open
raise IOError, "bad EPS header"
IOError: bad EPS header
同样打开 SVG 以IOError: cannot identify image file
.
问题是我必须在我的应用程序中支持这两种格式。转换为其他格式是没有选择的。我在 Windows 7、Python 2.7.2 和 PIL 1.1.7 上。