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;
}
?>
どんな手掛かり ?
前もって感謝します !