FingerImage.rotateTo Method¶
Module: FingerImage
Definition¶
Rotates the image to the specified angle.
Note
The rotation is performed counter-clockwise.
rotate_to(self, angle: int, dst_finger_image: FingerImage) -> None
Parameters
angleintin The rotation angle, in degree. Supported values are [0, 90, 180, 270].dst_finger_imageFingerImagein The destination Image that receives the rotated image.
Exceptions
An error has occurred during Finger Library execution.
void rotateTo(int angle, FingerImage dstFingerImage)
Parameters
angleintin The rotation angle, in degree. Supported values are [0, 90, 180, 270].dstFingerImageFingerImagein The destination Image that receives the rotated image.
Exceptions
An error has occurred during Finger Library execution.
public void RotateTo(int angle, FingerImage dstFingerImage)
Parameters
angleintin The rotation angle, in degree. Supported values are [0, 90, 180, 270].dstFingerImageFingerImagein The destination Image that receives the rotated image.
Exceptions
An error has occurred during Finger Library execution.
public void rotateTo(int angle, FingerImage dstFingerImage) throws FingerException
Parameters
angleintin The rotation angle, in degree. Supported values are [0, 90, 180, 270].dstFingerImageFingerImagein The destination Image that receives the rotated image.
Exceptions
An error has occurred during Finger Library execution.
public func rotateTo(angle: Int32, dstFingerImage: FingerImage) throws
Parameters
angleInt32in The rotation angle, in degree. Supported values are [0, 90, 180, 270].dstFingerImageFingerImagein The destination Image that receives the rotated image.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerImage_RotateTo (
ID3_FINGER_IMAGE hFingerImage,
int angle,
ID3_FINGER_IMAGE hDstFingerImage)
Parameters
hFingerImageID3_FINGER_IMAGEin Handle to the FingerImage object.angleintin The rotation angle, in degree. Supported values are [0, 90, 180, 270].hDstFingerImageID3_FINGER_IMAGEin The destination Image that receives the rotated image.
Returns