Graphics.DrawImageUnscaled

DrawImageUnscaled(Image, int, int, int, int)

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

public void DrawImageUnscaled(Image image, int x, int y, int width, int height)
ParameterTypeDescription
imageImageImage to draw.
xInt32The x-coordinate of the upper-left corner of the drawn image.
yInt32The y-coordinate of the upper-left corner of the drawn image.
widthInt32The width of the drawn image.
heightInt32The height of the drawn image.

See Also


DrawImageUnscaled(Image, int, int)

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

public void DrawImageUnscaled(Image image, int x, int y)
ParameterTypeDescription
imageImageImage to draw.
xInt32The x-coordinate of the upper-left corner of the drawn image.
yInt32The y-coordinate of the upper-left corner of the drawn image.

See Also


DrawImageUnscaled(Image, Point)

Draws a specified image using its original physical size at a specified location.

public void DrawImageUnscaled(Image image, Point point)
ParameterTypeDescription
imageImageImage to draw.
pointPointPoint structure that specifies the upper-left corner of the drawn image.

See Also


DrawImageUnscaled(Image, Rectangle)

Draws a specified image using its original physical size at a specified location.

public void DrawImageUnscaled(Image image, Rectangle rect)
ParameterTypeDescription
imageImageImage to draw.
rectRectangleRectangle that specifies the upper-left corner of the drawn image. The X and Y properties of the rectangle specify the upper-left corner. The Width and Height properties are ignored.

See Also