This function shows the dialog that allows you to rotate the image around its center.
Declaration:
Copy Code | |
---|---|
BOOL ACCUAPI IG_gui_ip_rotate_any_dlg ( HWND hWnd, LPAT_IGGUI_IP_ROTATE_ANY lpIpRotateAnyData ); |
Arguments:
Name | Type | Description |
hWnd | HWND | A handle of the parent window. |
lpIpRotateAnyData | AT_IGGUI_IP_ROTATE_ANY | A pointer to the AT_IGGUI_IP_ROTATE_ANY structure. |
Return Value:
If the user specifies parameters and clicks the OK button, the return value is non-zero. 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 Professional.
Example:
Copy Code | |
---|---|
#include "IG_gui_common.h" AT_IGGUI_IP_ROTATE_ANY IpRotateAny; IpRotateAny.cbSize = sizeof (IpRotateAny); IpRotateAny.hWnd = hWnd; IpRotateAny.hIGear = hIGear; if (IG_gui_ip_rotate_any_dlg (hWnd, &IpRotateAny)) { InvalidateRect(hWnd, NULL, FALSE); UpdateWindow(hWnd); } |
Sample:
Image Processing