Method DrawImage
DrawImage(Image, PointD)
Draws the specified Image, using its original size, at the specified location.
void DrawImage(Image image, PointD origin)Parameters
- imageImage
- Image to draw. 
- originPointD
- PointD structure that represents the upper-left corner of the drawn image. 
Remarks
When drawing a mono-bitmap, the current text foreground color will be used to draw the foreground of the bitmap (all bits set to 1), and the current text background color to draw the background (all bits set to 0).
DrawImage(Image, RectD)
Draws an image into the region defined by the specified RectD.
void DrawImage(Image image, RectD destinationRect)Parameters
Remarks
When drawing a mono-bitmap, the current text foreground color will be used to draw the foreground of the bitmap (all bits set to 1), and the current text background color to draw the background (all bits set to 0).
DrawImage(Image, RectD, RectD)
Draws the specified portion of the image into the region defined by the specified RectD.
void DrawImage(Image image, RectD destinationRect, RectD sourceRect)Parameters
- imageImage
- Image to draw. 
- destinationRectRectD
- The region in which to draw - image. Specified in device-independent units.
- sourceRectRectD
- RectD structure that specifies the portion of the - imageobject to draw.
DrawImage(Image, RectD, RectD, GraphicsUnit)
Draws the specified portion of the image into the region defined by the specified RectD.
void DrawImage(Image image, RectD destinationRect, RectD sourceRect, GraphicsUnit unit)