GraphicsCache.DrawImage(Image, Rectangle, Single, Single, Single, Single, ColorMatrix) 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,
float srcX,
float srcY,
float srcWidth,
float srcHeight,
ColorMatrix matrix
)
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. |
srcX | Single | A Single value that is the x-coordinate of the image portion’s upper-left corner. |
srcY | Single | A Single value that is the y-coordinate of the image portion’s upper-left corner. |
srcWidth | Single | A Single value that is the image portion’s width. |
srcHeight | Single | A Single value that is the image portion’s height. |
matrix | ColorMatrix | A color-adjustment matrix for the default category. |
See Also