Standalone API Usage
This section describes the basic structure of a standalone application using the API. See the source referenced in Example Programs. Typically, your application takes the following actions:
-
Create an
EDKFactory
instance and useGetTextExtractionEngine
to construct anITextExtractionEngine
. -
Use the engine
GetSession()
method to create anITextExtractionSession
. -
Add UTF-8 encoded data to the session, for example by using
SetInputStream
orAddInputText
. -
Iterate over the session to obtain
IExtractionMatch
results.