GraphicsCache.DrawImage(Image, Rectangle, Int32, Int32, Int32, Int32, GraphicsUnit) Method
Draws an Image portion at the specified location and with the specified size.
Namespace: DevExpress.Utils.Drawing
Assembly: DevExpress.Utils.v24.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
public void DrawImage(
Image image,
Rectangle destRect,
int x,
int y,
int width,
int height,
GraphicsUnit srcUnit
)
Parameters
Name | Type | Description |
---|---|---|
image | Image | An Image to draw. |
destRect | Rectangle | A Rectangle structure that specifies the image location and size. The image is scaled to fit this rectangle. |
x | Int32 | An Int32 value that is the x-coordinate of the image portion’ upper-left corner. |
y | Int32 | An Int32 value that is the y-coordinate of the image portion’ upper-left corner. |
width | Int32 | An Int32 value that is the x-coordinate the image portion’s width. |
height | Int32 | An Int32 value that is the image portion’ height. |
srcUnit | GraphicsUnit | A GraphicsUnit enumeration value that specifies the measure units for the x, y, width and height parameters. |