Graphics::DrawImage(Image*,INT,INT,INT,INT,INT,INT,Unit) method (gdiplusgraphics.h)

The Graphics::DrawImage method draws an image.

Syntax

Status DrawImage(
  [in] Image *image,
  [in] INT   x,
  [in] INT   y,
  [in] INT   srcx,
  [in] INT   srcy,
  [in] INT   srcwidth,
  [in] INT   srcheight,
  [in] Unit  srcUnit
);

Parameters

[in] image

Type: Image*

Pointer to an Image object that specifies the source image.

[in] x

Type: INT

Integer that specifies the x-coordinate of the upper-left corner of the destination position at which to draw the image.

[in] y

Type: INT

Integer that specifies the y-coordinate of the upper-left corner of the destination position at which to draw the image.

[in] srcx

Type: INT

Integer that specifies the x-coordinate of the upper-left corner of the portion of the source image to be drawn.

[in] srcy

Type: INT

Integer that specifies the y-coordinate of the upper-left corner of the portion of the source image to be drawn.

[in] srcwidth

Type: INT

Integer that specifies the width of the portion of the source image to be drawn.

[in] srcheight

Type: INT

Integer that specifies the height of the portion of the source image to be drawn.

[in] srcUnit

Type: Unit

Element of the Unit enumeration that specifies the unit of measure for the image. The default value is UnitPixel.

Return value

Type: Status

If the method succeeds, it returns Ok, which is an element of the Status enumeration.

If the method fails, it returns one of the other elements of the Status enumeration.

Requirements

Requirement Value
Minimum supported client Windows XP, Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header gdiplusgraphics.h (include Gdiplus.h)
Library Gdiplus.lib
DLL Gdiplus.dll

See also

Drawing, Positioning, and Cloning Images

Graphics

Image

Loading and Displaying Bitmaps