This section describes the basic structure of a standalone application using the API. See the source referenced in .NET API Examples. Typically, your application takes the following actions:
Create an EDKFactory
instance and use GetTextExtractionEngine
to construct an ITextExtractionEngine
.
Use the engine GetSession()
method to create an ITextExtractionSession
.
Add UTF-8 encoded data to the session, for example by using SetInputStream
or AddInputText
.
Iterate over the session to obtain IExtractionMatch
results.
|