Created
April 30, 2016 11:29
-
-
Save neckhair/5973b0825b6f815655bc326b8ee09875 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
filename=$(basename "$1") | |
extension="${filename##*.}" | |
filename="${filename%.*}" | |
tempfile=/tmp/$filename-gray.jpg | |
convert $1 -colorspace gray -auto-level -threshold 50% $tempfile | |
convert -density 150 -quality 20 -resize 50% -compress lzw $tempfile $tempfile | |
tesseract -l deu $tempfile $filename pdf | |
rm $tempfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment