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.
Remarks
The Extract PDF images section shows how to enumerate images in PDF documents.
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
boolThe 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.
Remarks
The Extract PDF images section shows how to enumerate images in PDF documents.