This function sets the new orientation mode.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_dspl_orientation_set( [IN] HIGEAR hIGear, [IN] DWORD dwGrpID, [IN] AT_MODE nOrientMode ); |
Name | Type | Description |
---|---|---|
hIGear | HIGEAR | Image handle where to set orientation mode. |
dwGrpID | DWORD | Identifier of the group in which to set the orientation. |
nOrientMode | AT_MODE |
New OrientMode value to set. Possible values are:
|
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 */ ... /* rotate image orientation by 90 degree */ IG_dspl_orientation_set( hIGear, nGrpID, IG_DSPL_ORIENT_TOP_RIGHT ); ... |