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



hbitmap
Handle to the DDB to be changed.
hpalette
Handle to the palette. This value can be IntPtr.Zero if the hbitmap parameter refers to a bitmap that is greater than 8 bits, or if the bitmap will use the system palette.
hbitmap
Handle to the DDB to be changed.
hpalette
Handle to the palette. This value can be IntPtr.Zero if the hbitmap parameter refers to a bitmap that is greater than 8 bits, or if the bitmap will use the system palette.
Changes a Windows Device Dependent Bitmap (DDB) to a LEADTOOLS Leadtools.RasterImage object.

Syntax

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

Parameters

hbitmap
Handle to the DDB to be changed.
hpalette
Handle to the palette. This value can be IntPtr.Zero if the hbitmap parameter refers to a bitmap that is greater than 8 bits, or if the bitmap will use the system palette.

Return Value

The newly created Leadtools.RasterImage object.

Example

For an example, refer to ChangeToHBitmap(RasterImage).

Remarks

This method results in only one copy of the image, and it invalidates the DDB (hbitmap) handle.

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