#include "ltdoc2.h"
L_LTDOC2_API L_INT L_Doc2SetSpecialCharExt(hDoc, nDocId, pSpecialChar)
Sets the special characters.
Handle to the OCR document.
Document ID created by calling L_Doc2CreateDocument.
Pointer to a SPECIALCHAR2 structure containing the characters to be set.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Sets the special characters that will replace missing or rejected characters the next time the recognition process is run and results are saved.
To get the current special characters, call the L_Doc2GetSpecialChar / L_Doc2GetSpecialCharExt function.
To recognize one or more pages, call the L_Doc2Recognize / L_Doc2RecognizeExt function.
Call L_Doc2SetSpecialCharExt after the recognition process has completed. When L_Doc2SetSpecialChar / L_Doc2SetSpecialCharExt is called with the specified characters, the engine replaces all missing or rejected characters with these newly set special characters. This helps find the missing or rejected characters with minimal effort when the recognition results are saved to a file.
Required DLLs and Libraries
L_INT Doc2SetSpecialCharExampleExt(L_HDOC2 hDoc, L_INT nDocId, L_INT nPageIndex)
{
L_INT nRet;
RECOGNIZEOPTS2 RecogOpts;
RecogOpts.uStructSize = sizeof(RECOGNIZEOPTS2);
RecogOpts.nPageIndexStart = nPageIndex;
RecogOpts.nPagesCount = 1;
RecogOpts.SpellLangId = DOC2_LANG_ID_ENGLISH;
nRet = L_Doc2RecognizeExt (hDoc, nDocId, &RecogOpts, NULL, NULL);
if (nRet == SUCCESS)
{
SPECIALCHAR2 SpecialChar;
ZeroMemory(&SpecialChar, sizeof(SPECIALCHAR2));
nRet = L_Doc2GetSpecialCharExt(hDoc, nDocId, &SpecialChar, sizeof(SPECIALCHAR2));
if(nRet != SUCCESS)
return nRet;
if (SpecialChar.chMissSym != L'^')
SpecialChar.chMissSym = L'^';
nRet = L_Doc2SetSpecialCharExt(hDoc, nDocId, &SpecialChar);
if(nRet != SUCCESS)
return nRet;
}
else
return nRet;
//...
//... save recognition results using L_Doc2SaveResultsToFileExt
//...
return SUCCESS;
}