Search
GdiGraphics.DrawImage Method (Image, Int32, Int32)
See Also
 





Draws the specified image, using its original physical size, at the location specified by a coordinate pair.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public virtual void DrawImage (
    Image image,
    int x,
    int y
)

Visual Basic  Copy Code

Public Overridable Sub DrawImage( _
    image As Image, _
    x As Integer, _
    y As Integer _
)

 Parameters

image
A .NET Image object to draw.
x
The x-coordinate of the upper-left corner of the drawn image.
y
The y-coordinate of the upper-left corner of the drawn image.

 See Also