Graphics.DrawImageUnscaled
Contents
[
Hide
]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)
Parameter | Type | Description |
---|---|---|
image | Image | Image to draw. |
x | Int32 | The x-coordinate of the upper-left corner of the drawn image. |
y | Int32 | The y-coordinate of the upper-left corner of the drawn image. |
width | Int32 | The width of the drawn image. |
height | Int32 | The height of the drawn image. |
See Also
- class Image
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
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)
Parameter | Type | Description |
---|---|---|
image | Image | Image to draw. |
x | Int32 | The x-coordinate of the upper-left corner of the drawn image. |
y | Int32 | The y-coordinate of the upper-left corner of the drawn image. |
See Also
- class Image
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
DrawImageUnscaled(Image, Point)
Draws a specified image using its original physical size at a specified location.
public void DrawImageUnscaled(Image image, Point point)
Parameter | Type | Description |
---|---|---|
image | Image | Image to draw. |
point | Point | Point structure that specifies the upper-left corner of the drawn image. |
See Also
- class Image
- struct Point
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
DrawImageUnscaled(Image, Rectangle)
Draws a specified image using its original physical size at a specified location.
public void DrawImageUnscaled(Image image, Rectangle rect)
Parameter | Type | Description |
---|---|---|
image | Image | Image to draw. |
rect | Rectangle | Rectangle 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
- class Image
- struct Rectangle
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing