On Thu, May 16, 2013 at 05:41:00AM -0700, Benito2313 wrote: > I'm trying to get the error output into a txt file or log file, how can i do > this (i'm working from command line)?
Hi Benito2313, If you're on Linux or similar, you can redirect all output using something like this: tesseract image.png output >my-log-file 2>&1 This is standard unix stuff; search for 'output redirection' and 'stderr' if you want to learn about it. Nick -- -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/tesseract-ocr?hl=en --- 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]. For more options, visit https://groups.google.com/groups/opt_out.

