Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / Page Class / GetImages Method / GetImages(Single,Single,Boolean) Method
The horizontal resolution used to calculate the bounds of images on the page.
The vertical resolution used to calculate the bounds of images on the page.
Indicates whether to ignore errors in PDF during processing.

In This Topic
    GetImages(Single,Single,Boolean) Method
    In This Topic
    Gets the list of images on this page.
    Syntax
    'Declaration
     
    Public Overloads Function GetImages( _
       ByVal dpiX As System.Single, _
       ByVal dpiY As System.Single, _
       ByVal ignoreErrors As System.Boolean _
    ) As System.Collections.Generic.IList(Of PdfImageInfo)
    public System.Collections.Generic.IList<PdfImageInfo> GetImages( 
       System.float dpiX,
       System.float dpiY,
       System.bool ignoreErrors
    )

    Parameters

    dpiX
    The horizontal resolution used to calculate the bounds of images on the page.
    dpiY
    The vertical resolution used to calculate the bounds of images on the page.
    ignoreErrors
    Indicates whether to ignore errors in PDF during processing.

    Return Value

    The list of images on the current page.
    See Also