convert pdf to text using ocr
$ sudo apt install imagemagick tesseract-ocr$ convert -density 300 input.pdf -depth 8 output.tiff$ tesseract output.tiff out
Last updated
make sure you have imagemagick and tesseract are installed
$ sudo apt install imagemagick tesseract-ocrIt's a 2 step process:
Convert PDF to .tiff using convert from imagemagick
$ convert -density 300 input.pdf -depth 8 output.tiffconvert .tiff to text using tesseract
generate out.txt
$ tesseract output.tiff outLast updated