我有一个关于昨天处理.eps文件的问题 - 你可以在这里找到它:With Python`s PIL, how to set DPI before loading an image?
我正在加载一个.eps文件并对其进行处理。今天我尝试将PIL(Pillow)更新到2.7.0版本 - 之后再读取.eps文件是不可能的。
错误:
Traceback (most recent call last):
File "img_pil.py", line 25, in <module>
img = Image.open('epstest.eps')
File "build/bdist.linux-x86_64/egg/PIL/Image.py", line 2274, in open
IOError: cannot identify image file 'epstest.eps'
代码:
img = Image.open('epstest.eps')
这是一个错误,还是我错过了什么?