Aspose::Pdf::Facades::PdfFileEditor::SplitToBulks method

PdfFileEditor::SplitToBulks(const System::SharedPtr<System::IO::Stream>&, const System::ArrayPtr<System::ArrayPtr<int32_t>>&) method

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

System::ArrayPtr<System::SharedPtr<System::IO::MemoryStream>> Aspose::Pdf::Facades::PdfFileEditor::SplitToBulks(const System::SharedPtr<System::IO::Stream> &inputStream, const System::ArrayPtr<System::ArrayPtr<int32_t>> &numberOfPage)
ParameterTypeDescription
inputStreamconst System::SharedPtr<System::IO::Stream>&Input PDF stream.
numberOfPageconst System::ArrayPtr<System::ArrayPtr<int32_t>>&The start page and the end page of each document.

ReturnValue

Output PDF streams, each stream buffers a PDF document.

See Also

PdfFileEditor::SplitToBulks(const System::String&, const System::ArrayPtr<System::ArrayPtr<int32_t>>&) method

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

System::ArrayPtr<System::SharedPtr<System::IO::MemoryStream>> Aspose::Pdf::Facades::PdfFileEditor::SplitToBulks(const System::String &inputFile, const System::ArrayPtr<System::ArrayPtr<int32_t>> &numberOfPage)
ParameterTypeDescription
inputFileconst System::String&Input PDF file.
numberOfPageconst System::ArrayPtr<System::ArrayPtr<int32_t>>&Array which contains array of double elements, which is start and end pages of document.

ReturnValue

Output PDF streams, each stream buffers a PDF document.

See Also