我在 Windows 7 上安装了 tesseract v3.01。我将 tesseract 路径添加到环境变量中。在 cmd 窗口中键入此命令后,我获得了正确的输出:“tesseract test.tif test”。
当我尝试使用以下脚本在 php 中获得相同的结果时,我得到一个空数组并且没有生成文件:
<?php
try {
exec("tesseract.exe test.tif test", $msg);
var_export($msg);
} catch (Exception $e) {
echo $e;
}
?>
有什么线索吗?
提前致谢 !