I work with and change a lot of the recognized data of the engine.
Therefore I used to Export the pages to XML and load the generated file into a XDocument, so that I could query it with LINQ.
But writing files to the filesystem is no longer an option. As far as I know you cannot change recognized data in too many ways and querying is quite hard.
I would like to know if there is an easy way to work with recognized data without writing too much code. Can you export data to a Filestream instead of a file?
Comments
2 comments
Hello!
There is the IFRDocument::ExportToMemory method in ABBYY FineReader Engine 11 and 12. This method saves the document into memory by means of the IFileWriter object. You can find the code sample (in C#) in our Developer's Help → API Reference → Supplementary Objects and Methods → IFileWriter, the Samples section.
Exactly what I was looking for but could not find. Thank you!
Please sign in to leave a comment.