ImageControls:
Product
Support Overview
ImageControls 3:
Product
Support Overview
Application
Notes
Downloads
Library
Error
Codes
FAQs
Revision
Levels
Supported
Configurations
Technical
Documentation
OTHER TOOLS:
Knowledgebase
Support Request
PRODUCT INFO:
Product
Overview
IC Toolkit 3.1 is the most recent release of the ImageControls Toolkit.
If you are running a previous version of Kofax ImageControls, refer to the ImageControls How to Buy Web page for details on how to obtain the appropriate ImageControls 3 release for your configuration.
Recently many scanners have added a new capability, the addition of a printer to 'endorse' or annotate the physical paper with a text string. Currently, Kofax supports the endorsers on the following scanner lines: Bell+Howell, BancTec/TDC, Ricoh and Fujitsu (M3099A only). These endorsements could be used to record the scan time and date, scan operator, index data or other information on the scanned paper at specified coordinates. Since each scanner vendor has different command formats for their endorsers, we encourage you to contact your vendor directly for this information.
The code sample below could be used to send an endorsement string to the scanner. In the case of the VCDEMO_G program, this code resides in the VCKIMG_G.CPP module. This is the C++ program that demonstrates the Gold Edition features of the toolkit.
The following is called from the KScan PageStart event. The only code that is added for endorsement follows the //Endorsement Code comment line.
void CKImgp::ProcessPageStart()
{
if(!bLoaded) return;
KFSetProperty(&vbx,KIPROP_PSANNOTATETEXT,AnnotateText);
KFSetProperty(&vbx,KIPROP_PSANNOTATETOP,nTextTop);
KFSetProperty(&vbx,KIPROP_PSANNOTATELEFT,nTextLeft);
//Endorsement Code
// The following code will work with any Kofax-supported scanner
if KFGetProperty(&vbx,KIPROP_ENDORSECAP) //Capable of endorsing?
{ KFSetProperty(&vbx,KIPROP_PSENDORSE,TRUE); //Set endorse to true
KFSetProperty(&vbx,KIPROP_ENDORSETOP,1); //Set to top of page
KFSetProperty(&vbx,KIPROP_ENDORSETEXT,"test"); //Set endorsement string
}
}
The Kofax ImageControls support group is skilled in Visual Basic and Visual C++ development and can assist developers in building their custom imaging applications. Our engineers can also point developers to source code samples on the Kofax FTP site.
The ImageControls 3 Technical Support Web pages have been kept up to date. We encourage ImageControls developers to investigate the information in these Web pages before looking for other sources of support. Use the menu options in the upper left side of this page to access additional product support Web pages for this product.
For details regarding technical support available for all Kofax products, please review the current Support Overview & Options and Product Support Eligibility Matrix Web pages.
