PdfImagesExtractorExtractImages(Byte, Int32) Method
Extracts images from the pages of a PDF document to image objects starting at a given page number through the end of the document
Namespace: Winnovative.Pdf.NextAssembly: Winnovative.Pdf.Next.PdfProcessor (in Winnovative.Pdf.Next.PdfProcessor.dll) Version: 20.0.0
public ExtractedImage[][] ExtractImages(
byte[] pdfData,
int startPageNumber
)
- pdfData Byte
- Memory buffer containing the PDF document from which to extract images
- startPageNumber Int32
- Start page number
ExtractedImage
An array of arrays of ExtractedImage objects.
Each element in the outer array represents a page in the PDF document
and each inner array contains the images extracted from that page.
For example, images[1] returns all images
extracted from the second page and images[1][2] is the third image from the second page