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





Draws the specified .NET Image object at the specified location and with the specified size.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public virtual void DrawImage (
    Image image,
    float x,
    float y,
    float width,
    float height
)

Visual Basic  Copy Code

Public Overridable Sub DrawImage( _
    image As Image, _
    x As Single, _
    y As Single, _
    width As Single, _
    height 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.
width
The width of the drawn image.
height
The height of the drawn image.

 See Also