Graphics::DrawImage Method (Image, Rectangle, Int32, Int32, Int32, Int32, GraphicsUnit, ImageAttributes)
Draws the specified portion of the specified Image at the specified location and with the specified size.
Assembly: System.Drawing (in System.Drawing.dll)
public: void DrawImage( Image^ image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes^ imageAttr )
Parameters
- image
- Type: System.Drawing::Image
Image to draw.
- destRect
- Type: System.Drawing::Rectangle
Rectangle structure that specifies the location and size of the drawn image. The image is scaled to fit the rectangle.
- srcX
- Type: System::Int32
The x-coordinate of the upper-left corner of the portion of the source image to draw.
- srcY
- Type: System::Int32
The y-coordinate of the upper-left corner of the portion of the source image to draw.
- srcWidth
- Type: System::Int32
Width of the portion of the source image to draw.
- srcHeight
- Type: System::Int32
Height of the portion of the source image to draw.
- srcUnit
- Type: System.Drawing::GraphicsUnit
Member of the GraphicsUnit enumeration that specifies the units of measure used to determine the source rectangle.
- imageAttr
- Type: System.Drawing.Imaging::ImageAttributes
ImageAttributes that specifies recoloring and gamma information for the image object.
| Exception | Condition |
|---|---|
| ArgumentNullException | image is nullptr. |
The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:
Creates an image from a JPEG file SampImag.jpg in the folder of the example.
Creates a destination rectangle in which to draw the image.
Creates the coordinates of a source rectangle from which to extract a portion of the image.
Sets the unit of measure of the source rectangle to pixels.
Draws the original image to the screen.
Creates an additional rectangle in which to draw an adjusted image.
Creates and sets the attributes of the adjusted image to have a larger-than-usual gamma value.
Draws the adjusted image to the screen.
For the original, unadjusted destination rectangle, the position locates the image on the screen, and the sizes of the source and destination rectangles determine the scaling of the drawn image, and the size of the source rectangle determines what portion of the original image is drawn to the screen.
void DrawImageRect4IntAtrrib( PaintEventArgs^ e ) { // Create image. Image^ newImage = Image::FromFile( "SampImag.jpg" ); // Create rectangle for displaying original image. Rectangle destRect1 = Rectangle(100,25,450,150); // Create coordinates of rectangle for source image. int x = 50; int y = 50; int width = 150; int height = 150; GraphicsUnit units = GraphicsUnit::Pixel; // Draw original image to screen. e->Graphics->DrawImage( newImage, destRect1, x, y, width, height, units ); // Create rectangle for adjusted image. Rectangle destRect2 = Rectangle(100,175,450,150); // Create image attributes and set large gamma. ImageAttributes^ imageAttr = gcnew ImageAttributes; imageAttr->SetGamma( 4.0F ); // Draw adjusted image to screen. e->Graphics->DrawImage( newImage, destRect2, x, y, width, height, units, imageAttr ); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.