我正在尝试在python中使用ghostscript。这是我的代码:
import sys
import ghostscript
args = [
"-sDEVICE=jpeg",
"-sOutputFile=test-%d.jpg",
"-dBATCH", "-dNOPAUSE",
"/users/arnoutaertgeerts/downloads/langetest.pdf"
]
ghostscript.Ghostscript(*args)
但我无法找到生成的图像(我可以看到它们正在生成!)我做了一些测试,并且显然我在-sDEVICE键入的内容并不重要...所以最不对的是什么? 我正在使用Ghostscript 9.0.6
ghostscript在哪里保存我的图片?
答案 0 :(得分:1)
由于你的args没有-dSAFER,你应该能够指定完整路径,包括带有目录的完整路径(就像输入文件一样)。试试-sOutputFile =“/ users / arnoutaertgeerts /测试 - %D.JPG“
然后查看/ users / arnoutaertgeerts目录。