FingerTemplate.imageWidth Property¶
Module: FingerTemplate
Type: int
Definition¶
Size of the image that the template was derived from in the x direction (in pixels).
int get imageWidth => getImageWidth();
set imageWidth(int value) => setImageWidth(value);
Exceptions
An error has occurred during Finger Library execution.
public int imageWidth
{
get => GetimageWidth();
set => SetimageWidth(ref value);
}
Exceptions
An error has occurred during Finger Library execution.
public int getImageWidth() throws FingerException
public void setImageWidth(int imageWidth) throws FingerException
Exceptions
An error has occurred during Finger Library execution.
public var imageWidth: Int
get {
return Int(try! getImageWidth())
}
}
Exceptions
An error has occurred during Finger Library execution.
int id3FingerTemplate_GetImageWidth (ID3_FINGER_TEMPLATE hFingerTemplate, int * imageWidth)
int id3FingerTemplate_SetImageWidth (ID3_FINGER_TEMPLATE hFingerTemplate, int imageWidth)
Returns