FingerImage.rotate Method¶
Module: FingerImage
Definition¶
Rotates the image in-place to the specified angle.
Note
The rotation is performed counter-clockwise.
rotate(self, angle: int) -> None
Parameters
angle
intin The rotation angle, in degree. Supported values are [0, 90, 180, 270].
Exceptions
An error has occurred during Finger Library execution.
void rotate(int angle)
Parameters
angle
intin The rotation angle, in degree. Supported values are [0, 90, 180, 270].
Exceptions
An error has occurred during Finger Library execution.
public void Rotate(int angle)
Parameters
angle
intin The rotation angle, in degree. Supported values are [0, 90, 180, 270].
Exceptions
An error has occurred during Finger Library execution.
public void rotate(int angle) throws FingerException
Parameters
angle
intin The rotation angle, in degree. Supported values are [0, 90, 180, 270].
Exceptions
An error has occurred during Finger Library execution.
public func rotate(angle: Int32) throws
Parameters
angle
Int32in The rotation angle, in degree. Supported values are [0, 90, 180, 270].
Exceptions
An error has occurred during Finger Library execution.
int id3FingerImage_Rotate (
ID3_FINGER_IMAGE hFingerImage,
int angle)
Parameters
hFingerImage
ID3_FINGER_IMAGEin Handle to the FingerImage object.angle
intin The rotation angle, in degree. Supported values are [0, 90, 180, 270].
Returns