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

The Graphics::DrawImage method draws an image.

Syntax

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

Parameters

[in] image

Type: Image*

Pointer to an Image object that specifies the source image.

[in] x

Type: REAL

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

[in] y

Type: REAL

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

[in] srcx

Type: REAL

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

[in] srcy

Type: REAL

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

[in] srcwidth

Type: REAL

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

[in] srcheight

Type: REAL

Real number 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