#include "ltdoc2.h"
L_LTDOC2_API L_INT EXT_FUNCTION L_Doc2SetSpecialChar(hDoc, pSpecialChar)
Sets the special characters.
Handle to the OCR document.
Pointer to a SPECIALCHAR2 structure, which contains 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.
💡 TIP
Call this function after the recognition process has completed. When the L_Doc2SetSpecialChar / L_Doc2SetSpecialCharExt function is called with the specified characters, the engine will replace all missing or rejected characters with these newly set special characters. This helps the user find the missing or rejected characters with minimal effort when the recognition results are saved to a file.
Required DLLs and Libraries
L_INT Doc2SetSpecialCharExample(L_HDOC2 hDoc,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_Doc2Recognize (hDoc, &RecogOpts, NULL, NULL);
if (nRet == SUCCESS)
{
SPECIALCHAR2 SpecialChar;
ZeroMemory(&SpecialChar, sizeof(SPECIALCHAR2));
nRet = L_Doc2GetSpecialChar(hDoc, &SpecialChar, sizeof(SPECIALCHAR2));
if(nRet != SUCCESS)
return nRet;
if (SpecialChar.chMissSym != L'^')
SpecialChar.chMissSym = L'^';
nRet = L_Doc2SetSpecialChar(hDoc, &SpecialChar);
if(nRet != SUCCESS)
return nRet;
}
else
return nRet;
//...
//... save recognition results using L_Doc2SaveResultsToFile
//...
return SUCCESS;
}