ImageGear Professional DLL v17.1 for Windows Accusoft
IG_REC_output_codepage_get
Send Feedback  
ImageGear Professional DLL v17.1 for Windows > API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Output Functions > IG_REC_output_codepage_get

Glossary Item Box

Returns code page being used during conversions by the functions IG_REC_util_codepage_to_unicode, IG_REC_util_unicode_to_codepage, IG_REC_document_write, IG_REC_output_direct_text_write. All supported code pages can be enumerated using IG_REC_output_codepage_first_get, IG_REC_output_codepage_next_get.

Declaration:

  Copy Code
AT_ERRCOUNT ACCUAPI IG_REC_output_codepage_get(
   LPSTR pCodePageName,
   AT_INT nBuferLength
);

Arguments:

pCodePageName Buffer to receive a name of Code Page.
nBuferLength Length of the buffer.

Return Value:

Returns the number of ImageGear errors that occurred during this function call.

Supported Raster Image Formats:

This function does not process image pixels.

Remarks:

Maximal length of the code page name is AM_MAX_CP_NAME_LEN.

Example:

  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_get(lpszCodepage, iCodepageLen);
free(lpszCodepage);

©2012. Accusoft Corporation. All Rights Reserved.