Hi,
I am trying to do some small changes on the available Demo Tools of FineReader Engine in order to, for instance, get a text output instead of a pdf file. However, the .exe files do not seem to reflect those changes. Is there some way to make them active?
Thank you in advance.
Comments
1 comment
Let's take, for instance, MultiProcessingRecognition demo. In order to change output file to txt you need to do the following:
Inside TestStage method in MultiProcessingRecognition.cs
document.Export( exportPath, FREngine.FileExportFormatEnum.FEF_PDF, exportParams );change to
document.Export( exportPath, FREngine.FileExportFormatEnum.FEF_TextUnicodeDefaults, null );and
to
As the output file is a simple txt file, synthesize method has no use.
Please sign in to leave a comment.