Skip to main content
All docs
V25.1
  • PdfDocumentProcessor.GetImagesInfo(PdfDocumentPosition, PdfDocumentPosition) Method

    Retrieves images and their boundaries found within specified document positions.

    Namespace: DevExpress.Pdf

    Assembly: DevExpress.Docs.v25.1.dll

    NuGet Package: DevExpress.Document.Processor

    Declaration

    public IList<PdfBitmapBox> GetImagesInfo(
        PdfDocumentPosition startPosition,
        PdfDocumentPosition endPosition
    )

    Parameters

    Name Type Description
    startPosition PdfDocumentPosition

    A PdfDocumentPosition object that is the initial document position from which images are obtained.

    endPosition PdfDocumentPosition

    A PdfDocumentPosition object that is the final document position from which images are not obtained.

    Returns

    Type Description
    IList<PdfBitmapBox>

    A collection of PdfBitmapBox objects.

    Remarks

    The overloaded GetImagesInfo method uses the page coordinate system. See the following topic for more information: Coordinate Systems.

    Refer to the following method overload for a code example: PdfDocumentProcessor.GetImagesInfo(PdfDocumentArea)

    See Also