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.
The attached code will allow you send an endorsement string to a scanner if it is equipped with an endorsement option. This is a very simplified version and is for demonstration purposes only.
The code is added to the module that encapsulates the Image Processing Control KIMGP. In the case of the VCDEMO_G program this is in the VCKIMG_??.CPP module. This is the C++ program that demonstrates the image processing features of the toolkit. To make use of the endorsement feature of the scanner you must have at least the Gold Edition of the ImageControls Toolkit. .
The following is called from the KScan PageStart event. "OnPageStart". The addition begins at //Endorsement Code, the other code is already in the module.
void CVCKImgp::ProcessPageStart()
{
if (!m_bLoaded)
{
return;
}
m_kimgpOcx.SetPSAnnotateText(m_strAnnotateText);
m_kimgpOcx.SetPSAnnotateTop(m_nTextTop);
m_kimgpOcx.SetPSAnnotateLeft(m_nTextLeft);
// Endorsement Code
// This will work with with any scanner that has an endorser and that is specifically supported by the
// ImageControls Tool Kit
if (IsEndorseCapable())
{
m_kimgpOcx.SetPSEndorse(m_bEndorseEnable);
m_kimgpOcx.SetPSEndorseText(m_strEndorseText);
m_kimgpOcx.SetPSEndorseTop(m_nEndorseTop);
m_kimgpOcx.SetPSEndorseLeft(m_nEndorseLeft);
}
}
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.
