コミュニティ

Changing Demo Tools Configuration 回答済み

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.

この記事は役に立ちましたか?

0人中0人がこの記事が役に立ったと言っています

コメント

1件のコメント

  • Avatar
    Permanently deleted user

    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

    exportPath += "_Sequential.pdf"
    exportPath += "_Parallel.pdf"

    to

    exportPath += "_Sequential.txt"
    exportPath += "_Parallel.txt"

    As the output file is a simple txt file, synthesize method has no use.

    1

サインインしてコメントを残してください。