FingerImage.resizeTo Method¶
Module: FingerImage
Definition¶
Resizes the image to the specified width and height.
resize_to(self, width: int, height: int, dst_finger_image: FingerImage) -> None
Parameters
width
intin The new width, in pixels.height
intin The new height, in pixels.dst_finger_image
FingerImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Finger Library execution.
void resizeTo(int width, int height, FingerImage dstFingerImage)
Parameters
width
intin The new width, in pixels.height
intin The new height, in pixels.dstFingerImage
FingerImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Finger Library execution.
public void ResizeTo(int width, int height, FingerImage dstFingerImage)
Parameters
width
intin The new width, in pixels.height
intin The new height, in pixels.dstFingerImage
FingerImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Finger Library execution.
public void resizeTo(int width, int height, FingerImage dstFingerImage) throws FingerException
Parameters
width
intin The new width, in pixels.height
intin The new height, in pixels.dstFingerImage
FingerImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Finger Library execution.
public func resizeTo(width: Int32, height: Int32, dstFingerImage: FingerImage) throws
Parameters
width
Int32in The new width, in pixels.height
Int32in The new height, in pixels.dstFingerImage
FingerImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerImage_ResizeTo (
ID3_FINGER_IMAGE hFingerImage,
int width,
int height,
ID3_FINGER_IMAGE hDstFingerImage)
Parameters
hFingerImage
ID3_FINGER_IMAGEin Handle to the FingerImage object.width
intin The new width, in pixels.height
intin The new height, in pixels.hDstFingerImage
ID3_FINGER_IMAGEin The destination image that receives the resized image.
Returns