Returns the output format being used for IG_REC_document_write.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_output_format_get( LPSTR lpszFormatName, AT_INT nBufferLengthen ); |
Name | Type | Description |
---|---|---|
lpszFormatName | LPSTR | Buffer to receive the output format name. |
nBufferLengthen | AT_INT | Length of the buffer. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0; char *lpszFormatName = malloc(AM_MAX_OUTPUT_FORMAT_NAME_LEN); ErrCount = IG_REC_output_format_get(lpszFormatName, AM_MAX_OUTPUT_FORMAT_NAME_LEN); //... free(lpszFormatName); |
Maximal length of the format name is AM_MAX_OUTPUT_FORMAT_NAME_LEN.