Luxand.FSDK.GetImageWidth C# (CSharp) Метод

GetImageWidth() приватный Метод

private GetImageWidth ( int SourceImage, int &Width ) : int
SourceImage int
Width int
Результат 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