在Python中调用Inkscape

可能重复:
在Python中调用外部命令

我正尝试在Python中将SVG文件转换为PDF。 我想为此使用Inkscape。 我如何在Python中调用Inkscape?


如果你根本不需要与流程进行交流,这应该做得很好:

import subprocess
p=subprocess.call(['program','arg1','arg2','arg3', ...])
链接地址: http://www.djcxy.com/p/13499.html

上一篇: Calling Inkscape in Python

下一篇: Recommended way to run another program from within a Python script