Search
IGraphics.DrawImage Method (ImageSource, Double, Double)
See Also
 






Draws the image represented by the specified ImageSource object, using its original physical size, at the specified location.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void DrawImage (
    ImageSource image,
    double x,
    double y
)

Visual Basic  Copy Code

Sub DrawImage( _
    image As ImageSource, _
    x As Double, _
    y As Double _
)

 Parameters

image

An ImageSource representing the image 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