This function shows the dialog that allows you to rotate the image around its center.
Copy Code
|
|
---|---|
BOOL ACCUAPI IG_gui_ip_rotate_any_dlg ( HWND hWnd, LPAT_IGGUI_IP_ROTATE_ANY lpIpRotateAnyData ); |
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. |
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.
All pixel formats supported by ImageGear for C and C++.
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); } |
Image Processing