Luxand.FSDK.GetImageWidth C# (CSharp) Method

GetImageWidth() private method

private GetImageWidth ( int SourceImage, int &Width ) : int
SourceImage int
Width int
return int
        public static extern int GetImageWidth(int SourceImage, ref int Width);

Usage Example

 private void PopulateHeightAndWidth()
 {
     CheckForError(FSDK.GetImageHeight(hImage, ref height));
     CheckForError(FSDK.GetImageWidth(hImage, ref width));
 }
FSDK