6 lines
178 B
Bash
Executable file
6 lines
178 B
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
in=$1
|
|
out=$(dirname "$in")/$(basename -- "$in" ".${in##*.}").pdf
|
|
|
|
img2pdf --auto-orient "$in" | ocrmypdf --language eng+nld --tesseract-pagesegmode 11 - "$out"
|