在python中执行2jpeg.exe

问题描述 投票:0回答:1

我正在尝试使用subprocess()运行2JPEG.exe,但出现错误。

我尝试过subprocess.check_call(["C:/PROGRA~2/2JPEG/2jpeg.exe", "-src E:\abc.pdf", "-dst E:\out"])

错误:CalledProcessError: Command '['C:/PROGRA~2/2JPEG/2jpeg.exe']' returned non-zero exit status 1231976016.

通常,我通常使用2jpeg.exe -src E:\abc.pdf -dst E:\out

python-3.x subprocess
1个回答
0
投票

您将--src传递给check_call()而不是-src

© www.soinside.com 2019 - 2024. All rights reserved.