Bitmap.GetHbitmap Método

Definición

Crea un objeto de mapa de bits de GDI a partir de un objeto Bitmap de GDI+.

Sobrecargas

GetHbitmap()

Crea un objeto de mapa de bits de GDI a partir de este Bitmap.

GetHbitmap(Color)

Crea un objeto de mapa de bits de GDI a partir de este Bitmap.

GetHbitmap()

Source:
Bitmap.cs
Source:
Bitmap.cs
Source:
Bitmap.cs

Crea un objeto de mapa de bits de GDI a partir de este Bitmap.

public:
 IntPtr GetHbitmap();
public IntPtr GetHbitmap ();
member this.GetHbitmap : unit -> nativeint
Public Function GetHbitmap () As IntPtr

Devoluciones

IntPtr

nativeint

Identificador del objeto de mapa de bits GDI que crea este método.

Excepciones

El alto o ancho del mapa de bits es mayor que Int16.MaxValue.

Error en la operación.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar el método GetHbitmap.

   [System::Runtime::InteropServices::DllImportAttribute("gdi32.dll")]
   static bool DeleteObject( IntPtr hObject );

private:
   void DemonstrateGetHbitmap()
   {
      Bitmap^ bm = gcnew Bitmap( "Picture.jpg" );
      IntPtr hBitmap = bm->GetHbitmap();
      
      // Do something with hBitmap.
      DeleteObject( hBitmap );
   }
[System.Runtime.InteropServices.DllImport("gdi32.dll")]
public static extern bool DeleteObject(IntPtr hObject);

private void DemonstrateGetHbitmap()
{
    Bitmap bm = new Bitmap("Picture.jpg");
    IntPtr hBitmap = bm.GetHbitmap();

    // Do something with hBitmap.
    DeleteObject(hBitmap);
}
<System.Runtime.InteropServices.DllImportAttribute("gdi32.dll")> _
    Private Shared Function DeleteObject (ByVal hObject As IntPtr) As Boolean
    End Function
   


    Private Sub DemonstrateGetHbitmap()
        Dim bm As New Bitmap("Picture.jpg")
        Dim hBitmap As IntPtr
        hBitmap = bm.GetHbitmap()

        ' Do something with hBitmap.
        DeleteObject(hBitmap)
    End Sub

Comentarios

Usted es responsable de llamar al método GDI DeleteObject para liberar la memoria utilizada por el objeto de mapa de bits GDI. Para obtener más información sobre los mapas de bits de GDI, vea Mapas de bits en la documentación de GDI de Windows.

Se aplica a

GetHbitmap(Color)

Source:
Bitmap.cs
Source:
Bitmap.cs
Source:
Bitmap.cs

Crea un objeto de mapa de bits de GDI a partir de este Bitmap.

public:
 IntPtr GetHbitmap(System::Drawing::Color background);
public IntPtr GetHbitmap (System.Drawing.Color background);
member this.GetHbitmap : System.Drawing.Color -> nativeint
Public Function GetHbitmap (background As Color) As IntPtr

Parámetros

background
Color

Estructura Color que especifica el color de fondo. Este parámetro se pasa por alto si el mapa de bits es totalmente opaco.

Devoluciones

IntPtr

nativeint

Identificador del objeto de mapa de bits GDI que crea este método.

Excepciones

El alto o ancho del mapa de bits es mayor que Int16.MaxValue.

Error en la operación.

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar el GetHbitmapmétodo ..

void DemonstrateGetHbitmapWithColor()
{
   Bitmap^ bm = gcnew Bitmap( "Picture.jpg" );
   IntPtr hBitmap = bm->GetHbitmap( Color::Blue );
   
   // Do something with hBitmap.
   DeleteObject( hBitmap );
}

private void DemonstrateGetHbitmapWithColor()
{
    Bitmap bm = new Bitmap("Picture.jpg");
    IntPtr hBitmap = bm.GetHbitmap(Color.Blue);

    // Do something with hBitmap.
    DeleteObject(hBitmap);
}

Private Sub DemonstrateGetHbitmapWithColor()
    Dim bm As New Bitmap("Picture.jpg")
    Dim hBitmap As IntPtr
    hBitmap = bm.GetHbitmap(Color.Blue)

    ' Do something with hBitmap.
    DeleteObject(hBitmap)
End Sub

Comentarios

Usted es responsable de llamar al método GDI DeleteObject para liberar la memoria utilizada por el objeto de mapa de bits GDI. Para obtener más información sobre los mapas de bits de GDI, vea Mapas de bits en la documentación de GDI de Windows.

Se aplica a