Skip to main content

GraphicsCache.DrawImage(Image, PointF[]) Method

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

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public void DrawImage(
    Image image,
    PointF[] destPoints
)

Parameters

Name Type Description
image Image

An Image to draw.

destPoints PointF[]

An array of three PointF structures that define a parallelogram.

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