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:
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 for C and C++.
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