Table of Contents

Method GetImages

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

GetImages()

Returns the enumerator that iterates through the collection of document images including inline images and images added to document but not yet drawn on any canvas.

public IEnumerable<PdfImage> GetImages()

Returns

IEnumerable<PdfImage>

The enumerator that can be used to iterate through the collection of document images including inline images and images added to document but not yet drawn on any canvas.

GetImages(bool)

Returns the enumerator that iterates through the collection of document images including or excluding the inline images. The enumerator includes images added to document but not yet drawn on any canvas.

public IEnumerable<PdfImage> GetImages(bool includeInlineImages)

Parameters

includeInlineImages bool

The value indicating whether to include inline images in the collection of document images.

Returns

IEnumerable<PdfImage>

The enumerator that can be used to iterate through the collection of page images including or excluding the inline images. The enumerator includes images added to document but not yet drawn on any canvas.