Bitmap.GetHbitmap Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un objet bitmap GDI à partir d’un Bitmap GDI+.
Surcharges
GetHbitmap() |
Crée un objet bitmap GDI à partir de ce Bitmap. |
GetHbitmap(Color) |
Crée un objet bitmap GDI à partir de ce Bitmap. |
GetHbitmap()
- Source:
- Bitmap.cs
- Source:
- Bitmap.cs
- Source:
- Bitmap.cs
Crée un objet bitmap GDI à partir de ce Bitmap.
public:
IntPtr GetHbitmap();
public IntPtr GetHbitmap ();
member this.GetHbitmap : unit -> nativeint
Public Function GetHbitmap () As IntPtr
Retours
nativeint
Handle de l’objet bitmap GDI créé par cette méthode.
Exceptions
La hauteur ou la largeur de la bitmap est supérieure à Int16.MaxValue.
L'opération a échoué.
Exemples
L'exemple de code suivant illustre l'utilisation de la méthode 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
Remarques
Vous êtes responsable de l’appel de la méthode GDI DeleteObject
pour libérer la mémoire utilisée par l’objet bitmap GDI. Pour plus d’informations sur les bitmaps GDI, consultez Bitmaps dans la documentation GDI Windows.
S’applique à
GetHbitmap(Color)
- Source:
- Bitmap.cs
- Source:
- Bitmap.cs
- Source:
- Bitmap.cs
Crée un objet bitmap GDI à partir de ce 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
Paramètres
- background
- Color
Structure Color qui spécifie la couleur d'arrière-plan. Ce paramètre est ignoré si la bitmap est totalement opaque.
Retours
nativeint
Handle de l’objet bitmap GDI créé par cette méthode.
Exceptions
La hauteur ou la largeur de la bitmap est supérieure à Int16.MaxValue.
L'opération a échoué.
Exemples
L’exemple de code suivant montre comment utiliser la GetHbitmapméthode ..
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
Remarques
Vous êtes responsable de l’appel de la méthode GDI DeleteObject
pour libérer la mémoire utilisée par l’objet bitmap GDI. Pour plus d’informations sur les bitmaps GDI, consultez Bitmaps dans la documentation GDI Windows.