Skip to main content

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

Draws the portion of the specified Image 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,
    Rectangle srcRect,
    GraphicsUnit srcUnit
)

Parameters

Name Type Description
image Image

An Image to draw.

destRect Rectangle

A Rectangle structure that specifies the drawn image’s location and size. The image is scaled to fit the rectangle.

srcRect Rectangle

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

srcUnit GraphicsUnit

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

See Also