Aspose::Pdf::Facades::PdfFileEditor::Concatenate method

PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<Document>>&, System::SharedPtr<Document>) method

Concatenates documents.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<Document>> &src, System::SharedPtr<Document> dest)
ParameterTypeDescription
srcconst System::ArrayPtr<System::SharedPtr<Document>>&Array of source documents.
destSystem::SharedPtr<Document>Destination document.

ReturnValue

True if concatenation is successful.

See Also

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

Concatenates files.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<System::IO::Stream>> &inputStream, const System::SharedPtr<System::IO::Stream> &outputStream)
ParameterTypeDescription
inputStreamconst System::ArrayPtr<System::SharedPtr<System::IO::Stream>>&Array of streams to be concatenated.
outputStreamconst System::SharedPtr<System::IO::Stream>&Stream where result file will be stored.

ReturnValue

True if operation was succeeded.

See Also

PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<System::IO::Stream>>&, const System::SharedPtr<System::Web::HttpResponse>&) method

Concatenates files and stores result into HttpResponse object.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<System::IO::Stream>> &inputStream, const System::SharedPtr<System::Web::HttpResponse> &response)
ParameterTypeDescription
inputStreamconst System::ArrayPtr<System::SharedPtr<System::IO::Stream>>&Streams array which contain files to concatenate.
responseconst System::SharedPtr<System::Web::HttpResponse>&Response object/

ReturnValue

true if operation was succeeded.

See Also

PdfFileEditor::Concatenate(const System::ArrayPtr<System::String>&, const System::SharedPtr<System::Web::HttpResponse>&) method

Concatenates files and saves reslt into HttpResposnse object.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::String> &inputFiles, const System::SharedPtr<System::Web::HttpResponse> &response)
ParameterTypeDescription
inputFilesconst System::ArrayPtr<System::String>&Array of files to concatenate.
responseconst System::SharedPtr<System::Web::HttpResponse>&Response object.

ReturnValue

true if concatenation was successful.

See Also

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

Concatenates files into one file.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::String> &inputFiles, const System::String &outputFile)
ParameterTypeDescription
inputFilesconst System::ArrayPtr<System::String>&Array of files to concatenate.
outputFileconst System::String&Name of output file.

ReturnValue

True if operation was succeeded.

See Also

PdfFileEditor::Concatenate(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::IO::Stream>&) method

Merges two Pdf documents into a new Pdf document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1’, p2’, p3’. Merging the two Pdf document will produce the result document with pages:p1, p1’, p2, p2’, p3, p3’, p4, blankpage, p5, blankpage.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::SharedPtr<System::IO::Stream> &firstInputStream, const System::SharedPtr<System::IO::Stream> &secInputStream, const System::SharedPtr<System::IO::Stream> &blankPageStream, const System::SharedPtr<System::IO::Stream> &outputStream)
ParameterTypeDescription
firstInputStreamconst System::SharedPtr<System::IO::Stream>&The first Pdf Stream.
secInputStreamconst System::SharedPtr<System::IO::Stream>&The second Pdf Stream.
blankPageStreamconst System::SharedPtr<System::IO::Stream>&The Pdf Stream with blank page.
outputStreamconst System::SharedPtr<System::IO::Stream>&Output Pdf Stream.

ReturnValue

True if operation was succeeded.

See Also

PdfFileEditor::Concatenate(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::IO::Stream>&) method

Concatenates two files.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::SharedPtr<System::IO::Stream> &firstInputStream, const System::SharedPtr<System::IO::Stream> &secInputStream, const System::SharedPtr<System::IO::Stream> &outputStream)
ParameterTypeDescription
firstInputStreamconst System::SharedPtr<System::IO::Stream>&Stream of first file.
secInputStreamconst System::SharedPtr<System::IO::Stream>&Stream of second file.
outputStreamconst System::SharedPtr<System::IO::Stream>&Stream where result file will be stored.

ReturnValue

True if operation was succeeded.

See Also

PdfFileEditor::Concatenate(const System::String&, const System::String&, const System::String&, const System::String&) method

Merges two Pdf documents into a new Pdf document with pages in alternate ways and fill the blank places with blank pages. e.g.: document1 has 5 pages: p1, p2, p3, p4, p5. document2 has 3 pages: p1’, p2’, p3’. Merging the two Pdf document will produce the result document with pages:p1, p1’, p2, p2’, p3, p3’, p4, blankpage, p5, blankpage.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::String &firstInputFile, const System::String &secInputFile, const System::String &blankPageFile, const System::String &outputFile)
ParameterTypeDescription
firstInputFileconst System::String&First file.
secInputFileconst System::String&Second file.
blankPageFileconst System::String&PDF file with blank page.
outputFileconst System::String&Result file.

ReturnValue

True if operation was succeeded.

See Also

PdfFileEditor::Concatenate(const System::String&, const System::String&, const System::String&) method

Concatenates two files.

bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::String &firstInputFile, const System::String &secInputFile, const System::String &outputFile)
ParameterTypeDescription
firstInputFileconst System::String&First file to concatenate.
secInputFileconst System::String&Second file to concatenate.
outputFileconst System::String&Output file.

ReturnValue

True if operation was succeeded.

See Also