BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Since my platform is a .Net Console application and this option does not exist in your Platforms list when posting a new thread ? | You can post your .Net Console application related queries under the “General Discussion”. Please find the screenshot below.
|
1. The OCR has placed 4 non-printable characters i.e. "\r\r" in place of every space character, can this be prevented and only an "\r" placed at the end actual new lines? | We can get only “\r” at the end of new line, please refer the below screen shot |
2. Where a table exists the ocr does not return cell delimiter e.g. tab character, so it's not possible to know which cell the text was in , can this be achieved through some kind of property setting? | At default the characters are preserved as in the table format, please check the below screenshot. |
3. The application will run unattended on a server. Is it possible to change the standard output of the OCR progress which is displayed in a command windows and sent to a file instead ? | Yes, it is possible. you can directly write the ocr’ed results to command window. string text = processor.PerformOCR(new System.Drawing.Bitmap(Image.FromFile("../../ocrImg2.png")), "../../Tessdata/");
Console.WriteLine(text); |