我已扫描过pdf文件,我需要使用php将此扫描的pdf文件转换为可搜索的pdf文件。我搜索了这个并找到了pdfocr工具。
当我在终端中运行以下命令时,它可以正常工作:
$output = shell_exec("pdfocr -i input.pdf -o output.pdf");
但是当我在php代码中运行以下命令时,它没有给出任何错误但也没有转换为可搜索的pdf文件:
with open("testfile.txt") as testfile:
x = int(testfile.read())
php的shell_exec命令有什么问题或其他错误吗?
提前致谢。
答案 0 :(得分:0)