ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFPage Class / AddImage Method / AddImage(ImGearPage,ImGearDoubleRectangle) Method
This parameter specifies the image that will be added to the calling ImGearPDFPage object.
An area on the page to fit the image, expressed in inches. When either width or height equals 0.0, the entire page area is used.




In This Topic
    AddImage(ImGearPage,ImGearDoubleRectangle) Method
    In This Topic
    Add an image to the page using the provided parameters.
    Syntax
    'Declaration
     
    Public Overloads Sub AddImage( _
       ByVal image As ImGearPage, _
       ByVal areaOnPage As ImGearDoubleRectangle _
    ) 
    'Usage
     
    Dim instance As ImGearPDFPage
    Dim image As ImGearPage
    Dim areaOnPage As ImGearDoubleRectangle
     
    instance.AddImage(image, areaOnPage)
    public void AddImage( 
       ImGearPage image,
       ImGearDoubleRectangle areaOnPage
    )
    public: void AddImage( 
       ImGearPage* image,
       ImGearDoubleRectangle areaOnPage
    ) 
    public:
    void AddImage( 
       ImGearPage^ image,
       ImGearDoubleRectangle areaOnPage
    ) 

    Parameters

    image
    This parameter specifies the image that will be added to the calling ImGearPDFPage object.
    areaOnPage
    An area on the page to fit the image, expressed in inches. When either width or height equals 0.0, the entire page area is used.
    Remarks
    The image is opaque and placed at the specified location on the page.
    See Also