IG_gui_dspl_transparency_dlg
This function shows the dialog that allows you to set transparency settings for the given image.
Declaration:
|
Copy Code
|
BOOL ACCUAPI IG_gui_dspl_transparency_dlg (
HWND hWnd,
LPAT_IGGUI_DSPL_TRANSPARENCY lpDsplTransparencyData
);
|
Arguments:
Return Value:
If the user specifies parameters and clicks the OK button, the return value is nonzero. If the user cancels or closes the dialog box or an error occurs, the return value is zero.
Supported Raster Image Formats:
All pixel formats supported by ImageGear for C and C++.
Sample:
Display
Example:
|
Copy Code
|
#include "IG_gui_common.h"
AT_IGGUI_DSPL_TRANSPARENCY DsplTransparency;
memset (&DsplTransparency,0,sizeof(DsplTransparency));
DsplTransparency.cbSize = sizeof (DsplTransparency);
DsplTransparency.hWnd = hWnd;
DsplTransparency.hIGear = hIGear;
DsplTransparency.dwGrpID = nGrpID;
IG_gui_dspl_transparency_dlg (hWnd, &DsplTransparency);
InvalidateRect (hWnd,NULL,FALSE);
UpdateWindow (hWnd);
|