Method GetImages
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
GetImages()
Returns the enumerator that iterates through the collection of page images including inline images.
public IEnumerable<PdfImage> GetImages()
Returns
- IEnumerable<PdfImage>
The enumerator that can be used to iterate through the collection of page images including inline images.
Remarks
You can use the enumerator to extract images from PDF.
GetImages(bool)
Returns the enumerator that iterates through the collection of page images including or excluding the inline images.
public IEnumerable<PdfImage> GetImages(bool includeInlineImages)
Parameters
includeInlineImages
boolThe value indicating whether to include inline images in the collection of page images.
Returns
- IEnumerable<PdfImage>
The enumerator that can be used to iterate through the collection of page images including or excluding the inline images.
Remarks
You can use the enumerator to extract images from PDF.