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:
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);
|