ImgRotate |
Top Previous Next |
Prototype
ImgRotate(intImageHandle, intAngle)
Description
Rotates the image in a clockwise direction like the specified angle.
Parameters
intImageHandle: integer value corresponding to the image handle.
intAngle: integer value corresponding to the corner of the image rotation.
Returned value
None.
Notes
None.
Example
// Rotate the image by 90° clockwise ImgRotate(_CurrentImage,90);
|