This function returns the current dithering flags.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_dspl_dithering_get( [IN] HIGEAR hIGear, [IN] DWORD dwGrpID, [OUT] LPAT_MODE lpnDitherFlags ); |
Name | Type | Description |
---|---|---|
hIGear | HIGEAR | ImageGear handle of image. |
dwGrpID | DWORD | Identifier of group from which to get option. |
lpnDitherFlags | LPAT_MODE | Pointer where DitherMode is to be received. |
Returns the number of ImageGear errors that occurred during this function call.
All pixel formats supported by ImageGear for C and C++.
Copy Code
|
|
---|---|
HIGEAR hIGear; /* HIGEAR handle of image */ DWORD nGrpID; /* display group identifier */ AT_MODE nDitherFlags; /* dither flags */ ... IG_dspl_dithering_get( hIGear, nGrpID, &nDitherFlags ); ... |
All possible values are listed in the description of function IG_dspl_dithering_set().