I am using ABBYY FRE 11 with .Net.
I PreProcess/Analyze/Recognize/Synthesize input images/documents with recognizerParams (SaveCharacterRecognitionVariants, SaveWordRecognitionVariants, SaveCharacterRegions, and ExactConfidenceCalculation) set to true and ErrorHighlightLevel set to EHL_Thorough.
I then Loop through all paragraphs, get CharacterParams, and when a character is marked as suspicious, I set new parameters for the character that should change the text color to red (I tried changing the color and FontStyle.Color properties of CharacterParams). The CharacterParams for the suspicious characters are set like this:
prgh.SetCharParams(i, 1, charParams, 0x00000100, 0x100000);
//CFL_IsSuspicious , StyleParamsEnum.SF_Color)
Where i is the index of the suspicious character.
When exporting to .PDF and .Docx formats, this does not happen. I have monochrome turned off and TextOnImage turned on for PDF Export. For RTF export, I turned on HighlightErrorsWithBackgroundColor set to true, so suspicious characters in exported .docx files will be highlighted green (this does happen).
How do I change the parameters/settings to change the textcolor of suspicious characters, or at least get highlighting to occur on PDF export? If more clarity is needed I will post code snippets.