PdfImagesExtractorExtractImages(Stream, Int32, Int32) Method

Extract the images from a range of pages of a PDF document in a stream to image objects

Definition

Namespace: EvoPdfClient
Assembly: EvoPdfClient (in EvoPdfClient.dll) Version: 11.0.0.0 (11.0.0.0)
C#
public ExtractedImage[] ExtractImages(
	Stream pdfStream,
	int startPageNumber,
	int endPageNumber
)

Parameters

pdfStream  Stream
The stream containing the PDF document from which to extract the images
startPageNumber  Int32
The start page number
endPageNumber  Int32
The end page number

Return Value

ExtractedImage
The images extracted from PDF pages. You are responsible for disposing the extracted images by calling their Dispose method when they are not needed anymore

See Also