【发布时间】:2017-11-19 02:53:45
【问题描述】:
我尝试使用 Pyzo 打开 EPS 图像,我已经安装了 PIL 和 Ghostscript(因为我看到在其他一些网站主题上是必需的),我的代码是:
from PIL import Image
im = Image.open('''myimage.eps''')
im.show()
但是当我运行代码时,Pyzo 会返回:
OSError: 无法在路径上找到 Ghostscript
我尝试在几个网站上查看它,但对于新手编码学生来说似乎相当复杂。
【问题讨论】:
-
这个解决了我的问题:tutorialexample.com/…
标签: python operating-system python-imaging-library eps pyzo