PdfFileEditor.SplitToBulks

SplitToBulks(string, int[][])

Splits the Pdf file into several documents.The documents can be single-page or multi-pages.

public MemoryStream[] SplitToBulks(string inputFile, int[][] numberOfPage)
ParameterTypeDescription
inputFileStringInput PDF file.
numberOfPageInt32[][]Array which contains array of double elements, which is start and end pages of document.

Return Value

Output PDF streams, each stream buffers a PDF document.

See Also


SplitToBulks(Stream, int[][])

Splits the Pdf file into several documents.The documents can be single-page or multi-pages.

public MemoryStream[] SplitToBulks(Stream inputStream, int[][] numberOfPage)
ParameterTypeDescription
inputStreamStreamInput PDF stream.
numberOfPageInt32[][]The start page and the end page of each document.

Return Value

Output PDF streams, each stream buffers a PDF document.

See Also