Image.GetBounds(GraphicsUnit) Methode

Definition

Ruft die Grenzen des Bilds in der angegebenen Einheit ab.

public:
 System::Drawing::RectangleF GetBounds(System::Drawing::GraphicsUnit % pageUnit);
public System.Drawing.RectangleF GetBounds (ref System.Drawing.GraphicsUnit pageUnit);
member this.GetBounds : GraphicsUnit -> System.Drawing.RectangleF
Public Function GetBounds (ByRef pageUnit As GraphicsUnit) As RectangleF

Parameter

pageUnit
GraphicsUnit

Einer der GraphicsUnit-Werte, der die Maßeinheit für das umschließende Rechteck angibt.

Gibt zurück

Das RectangleF, das die Grenzen des Bilds in der angegebenen Einheit darstellt.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie eine Bitmap mithilfe der GraphicsUnit Enumeration aus einem Icon Handle geladen wird und wie die Round -Methode zum Zeichnen der Rechteckgrenzen einer Bitmap verwendet wird.

Dieses Beispiel ist für die Verwendung mit Windows Forms konzipiert. Create ein Formular, das eine Schaltfläche mit dem Namen Button2enthält. Fügen Sie den Code in das Formular ein, und ordnen Sie diese Methode dem Ereignis der Click Schaltfläche zu.

void Button2_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   Bitmap^ bitmap1 = Bitmap::FromHicon( SystemIcons::Hand->Handle );
   Graphics^ formGraphics = this->CreateGraphics();
   GraphicsUnit units = GraphicsUnit::Point;
   RectangleF bmpRectangleF = bitmap1->GetBounds( units );
   Rectangle bmpRectangle = Rectangle::Round( bmpRectangleF );
   formGraphics->DrawRectangle( Pens::Blue, bmpRectangle );
   delete formGraphics;
}
private void Button2_Click(System.Object sender, System.EventArgs e)
{

    Bitmap bitmap1 = Bitmap.FromHicon(SystemIcons.Hand.Handle);
    Graphics formGraphics = this.CreateGraphics();
    GraphicsUnit units = GraphicsUnit.Point;

    RectangleF bmpRectangleF = bitmap1.GetBounds(ref units);
    Rectangle bmpRectangle = Rectangle.Round(bmpRectangleF);
    formGraphics.DrawRectangle(Pens.Blue, bmpRectangle);
    formGraphics.Dispose();
}
Private Sub Button2_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button2.Click

    Dim bitmap1 As Bitmap = Bitmap.FromHicon(SystemIcons.Hand.Handle)
    Dim formGraphics As Graphics = Me.CreateGraphics()
    Dim units As GraphicsUnit = GraphicsUnit.Point
    Dim bmpRectangleF As RectangleF = bitmap1.GetBounds(units)
    Dim bmpRectangle As Rectangle = Rectangle.Round(bmpRectangleF)
    formGraphics.DrawRectangle(Pens.Blue, bmpRectangle)
    formGraphics.Dispose()
End Sub

Gilt für: