Prototype
ImgRotate(intImageHandle, intAngle)
Description
It 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
//It rotates the image
ImgRotate(_CurrentImage,3);
//It shows a message
ApplicationLog(_CurrentAgent,'image rotation');