GraphicsCache.DrawImage(Image, PointF[], RectangleF, ColorMatrix) Method
Draws the portion of the specified Image 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,
PointF[] destPts,
RectangleF srcRect,
ColorMatrix matrix
)
Parameters
Name | Type | Description |
---|---|---|
image | Image | An Image to draw. |
destPts | PointF[] | An array of three Point structures that define a parallelogram. |
srcRect | RectangleF | A Rectangle structure that specifies the image portion to be drawn. |
matrix | ColorMatrix | A color-adjustment matrix for the default category. |
Remarks
Points stored in the “destPoints” parameter represent the parallelogram’s upper-left, upper-right, and lower-left corners. The fourth point is extrapolated from the first three.
The drawn image is scaled and sheared to fit the parallelogram shape.
See Also