FingerImage.reallocate Method¶
Module: FingerImage
Definition¶
Reallocates the internal memory of the Image from parameters.
Note
If the given parameters are the same as the ones of the object, then there is nothing done in this function.
reallocate(self, width: int, height: int, pixel_format: PixelFormat) -> None
Parameters
width
intin The new width, in pixels.height
intin The new height, in pixels.pixel_format
PixelFormatin The new pixel format.
Exceptions
An error has occurred during Finger Library execution.
void reallocate(int width, int height, PixelFormat pixelFormat)
Parameters
width
intin The new width, in pixels.height
intin The new height, in pixels.pixelFormat
PixelFormatin The new pixel format.
Exceptions
An error has occurred during Finger Library execution.
public void Reallocate(int width, int height, PixelFormat pixelFormat)
Parameters
width
intin The new width, in pixels.height
intin The new height, in pixels.pixelFormat
PixelFormatin The new pixel format.
Exceptions
An error has occurred during Finger Library execution.
public void reallocate(int width, int height, PixelFormat pixelFormat) throws FingerException
Parameters
width
intin The new width, in pixels.height
intin The new height, in pixels.pixelFormat
PixelFormatin The new pixel format.
Exceptions
An error has occurred during Finger Library execution.
public func reallocate(width: Int32, height: Int32, pixelFormat: PixelFormat) throws
Parameters
width
Int32in The new width, in pixels.height
Int32in The new height, in pixels.pixelFormat
PixelFormatin The new pixel format.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerImage_Reallocate (
ID3_FINGER_IMAGE hFingerImage,
int width,
int height,
id3FingerPixelFormat ePixelFormat)
Parameters
hFingerImage
ID3_FINGER_IMAGEin Handle to the FingerImage object.width
intin The new width, in pixels.height
intin The new height, in pixels.ePixelFormat
id3FingerPixelFormatin The new pixel format.
Returns