I am trying to use Kofax Capture API and trying to write a custom module which will do a scan.
For this i need to create a batch and then process/scan it.
Is there anyway to process/scan a batch?
apikofax
I am trying to use Kofax Capture API and trying to write a custom module which will do a scan.
For this i need to create a batch and then process/scan it.
Is there anyway to process/scan a batch?
Best Solution
Hmm, I don't know if it's possible to do inside a custom module. When writing a custom module you're typically using the Kofax Capture Optimized Custom Module API (DBLiteOpt.dll). I know you can create an empty batch with a custom module by using BatchCreate method of the RuntimeSession object:
Unfortunately, I don't know of any way to import documents into that batch.
You can always just create a stand-alone program that imports a batch. Here's some C# pseudo-code: