Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GraphicsCache.DrawImage(Image, PointF[], RectangleF, GraphicsUnit) Method

Draws the Image portion at the specified location and with the specified size.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

public void DrawImage(
    Image image,
    PointF[] destPoints,
    RectangleF srcRect,
    GraphicsUnit srcUnit
)

#Parameters

Name Type Description
image Image

An Image to draw.

destPoints PointF[]

An array of three PointF structures that define a parallelogram.

srcRect RectangleF

A RectangleF structure that specifies the image portion to be drawn.

srcUnit GraphicsUnit

A GraphicsUnit enumeration value that specifies the measure units for the srcRect parameter.

#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