Search
IGraphics.DrawImage Method (Image, Single, Single)
See Also
 





Draws the specified .NET Image object, using its original physical size, at the specified location.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

void DrawImage (
    Image image,
    float x,
    float y
)

Visual Basic  Copy Code

Sub DrawImage( _
    image As Image, _
    x As Single, _
    y As Single _
)

 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