Luxand.FSDK.GetImageWidth C# (CSharp) Méthode

GetImageWidth() private méthode

private GetImageWidth ( int SourceImage, int &Width ) : int
SourceImage int
Width int
Résultat 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