GraphicsCache.DrawImage(Image, RectangleF, RectangleF, GraphicsUnit) Method
Draws an Image portion 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,
RectangleF destRect,
RectangleF srcRect,
GraphicsUnit srcUnit
)
Parameters
Name | Type | Description |
---|---|---|
image | Image | An Image to draw. |
destRect | RectangleF | A RectangleF structure that specifies the image location and size. The image is scaled to fit this rectangle. |
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. |
See Also