Hi Clint, after you install tesseract and tesseract libraries and tesseract dev libraries (using packages or from source) you can call it from your program. If you are using C++ just call it, if you are using other languages you need to find a wrapper/bindings library (for example tesserocr for python). Or you can call the "tesseract" executable as an external process from your program like you would do on command line.
It makes absolutely no difference if you are doing it from a web application or from a simple command line application. Google "tesseract YOUR_LANGUAGE library". The tesseract library for your language will give you the examples on how to use it. I suppose you have the permissions to install software on the server you are using, globally (as root) or as local user. I would recommend using your distribution packages if possible. If you cannot install software on the server you cannot use tesseract. Use Tesseract.js as you did. If you can only upload static files you cannot use tesseract. You need a process running server-side (PHP, Python, Node, ...). Lorenzo Il giorno ven 13 set 2019 alle ore 16:07 Timothy Snyder < [email protected]> ha scritto: > Perfect. All you have to do is develop services on your server to receive > images and send back OCR text. With whatever scripting language you are > using on your server, just make a programmatic command line call to > Tesseract with the uploaded image and send that text back to the user > however you want. > > On Fri, Sep 13, 2019 at 9:25 AM Clint William Theron < > [email protected]> wrote: > >> * Are you comfortable with developing client-server web applications? * >> *Yes.* >> >> I just need help implementing Tesseract. I know how to install it in >> Windows and call it from command line but I want to do it online. I don't >> know how to do it on a server so that the client can call it where server >> is *any* implementation where Tesseract is ready to receive OCR work and >> client is a browser sending a image for OCR. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "tesseract-ocr" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/tesseract-ocr/35d8a4c4-3608-44ab-bb81-997958fe8958%40googlegroups.com >> <https://groups.google.com/d/msgid/tesseract-ocr/35d8a4c4-3608-44ab-bb81-997958fe8958%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > -- > You received this message because you are subscribed to the Google Groups > "tesseract-ocr" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/tesseract-ocr/CABtjQ9Jg0-nx9EVyPL1pP7Azh0tBU2YSWS%2BUSZoMT_3nM6akHg%40mail.gmail.com > <https://groups.google.com/d/msgid/tesseract-ocr/CABtjQ9Jg0-nx9EVyPL1pP7Azh0tBU2YSWS%2BUSZoMT_3nM6akHg%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/CAMgOLLw0RN6Yu6vGmiWqwjtO%2BcU8uGbpPeS6Jqm_jn1KbG-m1g%40mail.gmail.com.

