Starts the enumeration of the available Code Pages and returns the name of the first one.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_output_codepage_first_get( LPSTR pCodePageName, AT_INT nBufferLength ); |
Name | Type | Description |
---|---|---|
pCodePageName | LPSTR | Pointer of a buffer for the name of the first available Code Page. |
nBufferLength | AT_INT | Length of pCodePageName buffer. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0; LPSTR lpszCodepage = 0; AT_INT iCodepageLen = AM_MAX_CP_NAME_LEN; lpszCodepage = (LPSTR) malloc(iCodepageLen); ErrCount += IG_REC_output_codepage_first_get(lpszCodepage, iCodepageLen); free(lpszCodepage); |
Maximal length of the code page name is AM_MAX_CP_NAME_LEN.