Skip to main content

GraphicsCache.DrawImage(Image, Rectangle, Single, Single, Single, Single, GraphicsUnit) Method

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

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public void DrawImage(
    Image image,
    Rectangle destRect,
    float srcX,
    float srcY,
    float srcWidth,
    float srcHeight,
    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.

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.

srcUnit GraphicsUnit

A GraphicsUnit enumeration value that specifies the measure units for the srcX, srcY, srcHeight and srcWidth parameters.

See Also