Luxand.FSDK.LoadImageFromHBitmap C# (CSharp) Method

LoadImageFromHBitmap() private method

private LoadImageFromHBitmap ( int &Image, IntPtr BitmapHandle ) : int
Image int
BitmapHandle System.IntPtr
return int
        public static extern int LoadImageFromHBitmap(ref int Image, IntPtr BitmapHandle);

Usage Example

 CImage(IntPtr BitmapHandle)
 {
     hImage = -1;
     CheckForError(FSDK.LoadImageFromHBitmap(ref hImage, BitmapHandle));
     PopulateHeightAndWidth();
 }
FSDK