ComponentOne PDF for .NET
C1.C1Pdf Namespace / C1PdfDocument Class / DrawImage Method / DrawImage(Image,RectangleF,RectangleF) Method
System.Drawing.Image object to draw.
System.Drawing.RectangleF structure that specifies the location of the drawn image, in points from the top left corner of the page.
System.Drawing.RectangleF structure that specifies a clipping rectangle on the page. No part of the image is drawn outside the clipping rectangle.

In This Topic
    DrawImage(Image,RectangleF,RectangleF) Method
    In This Topic
    Draws the specified System.Drawing.Image object at the specified location, clipping the output to the given clipping rectangle.
    Syntax
    'Declaration
     
    
    Public Overloads Sub DrawImage( _
       ByVal img As Image, _
       ByVal rcImage As RectangleF, _
       ByVal rcClip As RectangleF _
    ) 
    public void DrawImage( 
       Image img,
       RectangleF rcImage,
       RectangleF rcClip
    )

    Parameters

    img
    System.Drawing.Image object to draw.
    rcImage
    System.Drawing.RectangleF structure that specifies the location of the drawn image, in points from the top left corner of the page.
    rcClip
    System.Drawing.RectangleF structure that specifies a clipping rectangle on the page. No part of the image is drawn outside the clipping rectangle.
    See Also