LEADTOOLS GDI/GDI+ (Leadtools.Drawing assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
FromHBitmap(IntPtr,IntPtr,IntPtr) Method
See Also 



hdc
Handle to the Windows device context responsible for the conversion. The mapping mode of the device context must be MM_TEXT.
hbitmap
Handle to the Windows DDB.
hpalette
Handle to the Windows palette. This value can be IntPtr.Zero if the DDB is dependent on a device that is greater than 8 bits, or if the image will use the system palette.
hdc
Handle to the Windows device context responsible for the conversion. The mapping mode of the device context must be MM_TEXT.
hbitmap
Handle to the Windows DDB.
hpalette
Handle to the Windows palette. This value can be IntPtr.Zero if the DDB is dependent on a device that is greater than 8 bits, or if the image will use the system palette.
Creates a new Leadtools.RasterImage from the specified Windows Device Dependent Bitmap (DDB).

Syntax

Visual Basic (Declaration) 
Overloads Public Shared Function FromHBitmap( _
   ByVal hdc As IntPtr, _
   ByVal hbitmap As IntPtr, _
   ByVal hpalette As IntPtr _
) As RasterImage
Visual Basic (Usage)Copy Code
Dim hdc As IntPtr
Dim hbitmap As IntPtr
Dim hpalette As IntPtr
Dim value As RasterImage
 
value = RasterImageConverter.FromHBitmap(hdc, hbitmap, hpalette)
C# 
public static RasterImage FromHBitmap( 
   IntPtr hdc,
   IntPtr hbitmap,
   IntPtr hpalette
)
C++/CLI 
public:
static RasterImage^ FromHBitmap( 
   IntPtr hdc,
   IntPtr hbitmap,
   IntPtr hpalette
) 

Parameters

hdc
Handle to the Windows device context responsible for the conversion. The mapping mode of the device context must be MM_TEXT.
hbitmap
Handle to the Windows DDB.
hpalette
Handle to the Windows palette. This value can be IntPtr.Zero if the DDB is dependent on a device that is greater than 8 bits, or if the image will use the system palette.

Return Value

The newly created Leadtools.RasterImage object.

Example

Remarks

For more information on DDBs and DIBs, refer to Using DIBs, DDBs, and the Clipboard.

For more information refer to RasterImage and GDI/GDI+.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also