Browse Source

Fix relative path to temporary directory for Tesseract OCR

pull/40/head
Benjamin Southall 7 years ago
parent
commit
b4c53e4474
  1. 2
      post.php

2
post.php

@ -1006,7 +1006,7 @@ if (isset($_POST['delete'])) {
if ($fname == 'spoiler') { // We don't have that much CPU time, do we?
}
else {
$tmpname = "tmp/tesseract/".rand(0,10000000);
$tmpname = __DIR__ . "/tmp/tesseract/".rand(0,10000000);
// Preprocess command is an ImageMagick b/w quantization
$error = shell_exec_error(sprintf($config['tesseract_preprocess_command'], escapeshellarg($fname)) . " | " .

Loading…
Cancel
Save