Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tika Wiki" for change notification.
The "TikaOCR" page has been changed by ChrisMattmann: https://wiki.apache.org/tika/TikaOCR?action=diff&rev1=3&rev2=4 Comment: - add in Tika server example That's it! You should see the text extracted by Tesseract and flowed through Tika. + = Using Tika Server and Tesseract = + + Once you have Tesseract and a fresh build of Tika 1.7-SNAPSHOT (including Tika server), you can easily use Tika-Server with Tesseract. + For example, to post a TIFF file to the server and get back its OCR extracted text, run the following commands: + + == in another window, start Tika server == + + `java -jar /path/to/tika-server-1.7-SNAPSHOT.jar` + + == in another window, issue a cURL request == + + `curl -T /path/to/tiff/image.tiff http://localhost:9998/tika --header "Content-type: image/tiff"` +
