关于pdf:在python中调用inkscape

Calling Inkscape in Python

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
Calling an external command in Python

我正在尝试用python将svg文件转换为pdf。我想用Inkscape来做这个。我怎样才能在python中调用inkscape?


如果您根本不需要与流程进行通信,那么这应该很好:

1
2
import subprocess
p=subprocess.call(['program','arg1','arg2','arg3', ...])