ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFPage Class / AddImage Method / AddImage(ImGearPage,Double) Method
This parameter specifies the image that will be added to the calling ImGearPDFPage object.
The image opacity on the page. Valid values are in the range 0.0 to 1.0, where 1.0 indicates opaque and 0.0 indicates transparent.




In This Topic
    AddImage(ImGearPage,Double) 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 opacity As Double _
    ) 
    'Usage
     
    Dim instance As ImGearPDFPage
    Dim image As ImGearPage
    Dim opacity As Double
     
    instance.AddImage(image, opacity)
    public void AddImage( 
       ImGearPage image,
       double opacity
    )
    public: void AddImage( 
       ImGearPage* image,
       double opacity
    ) 
    public:
    void AddImage( 
       ImGearPage^ image,
       double opacity
    ) 

    Parameters

    image
    This parameter specifies the image that will be added to the calling ImGearPDFPage object.
    opacity
    The image opacity on the page. Valid values are in the range 0.0 to 1.0, where 1.0 indicates opaque and 0.0 indicates transparent.
    Remarks
    The image is added with the specified opacity and fit to the center of the entire page.
    See Also