#include "BIPCX.H"
int CALLBACK GetPCXColorSpace( LPTSTR lpszName)
Description
Retrieves the color space of the PCX file.
Parameters
|
LPTSTR |
lpszName |
PCX file name. |
Additional Information
This example shows how to use the dll when loading statically including the header file. Otherwise if the dll is loaded dynamically, for further information read the “About the difference of static and dynamic library loading” section of the manual.
Return values
Color space flag, -1 on error.
Programming notes
Color space formats flags are declared in BiPCX.h. Available color space flags: PCX_YUV, PCX_YIQ, PCX_HSI, PCX_HSV, PCX_LAB, PCX_XYZ, PCX_CMY, PCX_RGB. The color space flag is stored in the header of the PCX image.
Requirements
Header : Declared in BiPCX.h; include BiPCX.h.
Library : Use BiPCX.lib.
DLLs : BiPCX.dll.
Code example
None at present.