ImageGear for C and C++ on Linux v20.0 - Updated
IG_util_version_get
API Reference Guide > Core Component API Reference > Core Component Functions Reference > Utility Functions > IG_util_version_get

This utility returns text information about the ImageGear version.

Declaration:

 
Copy Code
VOID ACCUAPI IG_util_version_get(
        [OUT] LPCHAR lpStr
);

Arguments:

Name Type Description
lpStr LPCHAR Pointer to an array of chars where necessary string is returned.

Return Value:

Returns the number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.

Supported Raster Image Formats:

This function does not process image pixels.

Example:

 
Copy Code
CHAR szBuf[256];
 ...
IG_util_version_get( szBuf );
 ...
Is this page helpful?
Yes No
Thanks for your feedback.