Gets information about the specified output document format converter.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_output_format_info_get( LPCSTR lpszFormatName, AT_REC_OUTPUT_CONVERTER_INFO* pInfo ); |
Name | Type | Description |
---|---|---|
lpszFormatName | LPCSTR | The name of the output conversion format. |
pInfo | AT_REC_OUTPUT_CONVERTER_INFO* | Pointer to the AT_REC_OUTPUT_CONVERTER_INFO structure to receive the output format info. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0; AT_REC_OUTPUT_CONVERTER_INFO Info; memset(&Info, 0, sizeof(Info)); ErrCount += IG_REC_output_format_info_get("Windows ANSI", &Info); |