Gets information about the specified output document format converter.
Declaration:
|
Copy Code |
AT_ERRCOUNT ACCUAPI IG_REC_output_format_info_get(
LPCSTR lpszFormatName,
AT_REC_OUTPUT_CONVERTER_INFO * pInfo
);
|
Arguments:
lpszFormatName |
The name of the output conversion format. |
pInfo |
Pointer to the AT_REC_OUTPUT_CONVERTER_INFO structure to receive the output format info. |
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.
Example:
|
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);
|