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

This function can be called to obtain the date of compilation of the version of ImageGear you are using.

Declaration:

 
Copy Code
LPSTR ACCUAPI IG_version_compile_date (VOID);

Return Value:

Returns a FAR pointer to a string containing the compile date in the format given above. 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
#include <string.h>
char      MyCompileDateString[12]; /* Will receive "Mmm dd yyyy" */
strcpy ( MyCompileDateString, IG_version_compile_date())

Remarks:

The return value is a FAR pointer to a string in the form "Mmm dd yyyy", such as "Jul 04 2019."

Is this page helpful?
Yes No
Thanks for your feedback.