Метод Aspose::Pdf::Facades::PdfFileEditor::Concatenate
PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<Document>>&, System::SharedPtr<Document>) method
Объединяет документы.
bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<Document>> &src, System::SharedPtr<Document> dest)
| Параметр | Тип | Описание |
|---|---|---|
| src | const System::ArrayPtr<System::SharedPtr<Document>>& | Массив исходных документов. |
| dest | System::SharedPtr<Document> | Документ назначения. |
ReturnValue
True, если конкатенация прошла успешно.
См. также
- Typedef ArrayPtr
- Typedef SharedPtr
- Class Document
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<System::IO::Stream>>&, const System::SharedPtr<System::IO::Stream>&) method
Объединяет файлы.
bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<System::IO::Stream>> &inputStream, const System::SharedPtr<System::IO::Stream> &outputStream)
| Параметр | Тип | Описание |
|---|---|---|
| inputStream | const System::ArrayPtr<System::SharedPtr<System::IO::Stream>>& | Массив потоков для конкатенации. |
| outputStream | const System::SharedPtr<System::IO::Stream>& | Поток, в котором будет сохранён результирующий файл. |
ReturnValue
True, если операция завершилась успешно.
См. также
- Typedef ArrayPtr
- Typedef SharedPtr
- Class Stream
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<System::IO::Stream>>&, const System::SharedPtr<System::Web::HttpResponse>&) method
Объединяет файлы и сохраняет результат в объект HttpResponse.
bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::SharedPtr<System::IO::Stream>> &inputStream, const System::SharedPtr<System::Web::HttpResponse> &response)
| Параметр | Тип | Описание |
|---|---|---|
| inputStream | const System::ArrayPtr<System::SharedPtr<System::IO::Stream>>& | Массив потоков, содержащих файлы для конкатенации. |
| ответ | const System::SharedPtr<System::Web::HttpResponse>& | Объект ответа/ |
ReturnValue
true, если операция завершилась успешно.
См. также
- Typedef ArrayPtr
- Typedef SharedPtr
- Class Stream
- Class HttpResponse
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Concatenate(const System::ArrayPtr<System::String>&, const System::SharedPtr<System::Web::HttpResponse>&) method
Объединяет файлы и сохраняет reslt в объект HttpResposnse.
bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::String> &inputFiles, const System::SharedPtr<System::Web::HttpResponse> &response)
| Параметр | Тип | Описание |
|---|---|---|
| inputFiles | const System::ArrayPtr<System::String>& | Массив файлов для конкатенации. |
| ответ | const System::SharedPtr<System::Web::HttpResponse>& | Объект ответа. |
ReturnValue
true, если конкатенация прошла успешно.
См. также
- Typedef ArrayPtr
- Class String
- Typedef SharedPtr
- Class HttpResponse
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Concatenate(const System::ArrayPtr<System::String>&, const System::String&) method
Объединяет файлы в один файл.
bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::ArrayPtr<System::String> &inputFiles, const System::String &outputFile)
| Параметр | Тип | Описание |
|---|---|---|
| inputFiles | const System::ArrayPtr<System::String>& | Массив файлов для конкатенации. |
| outputFile | const System::String& | Имя выходного файла. |
ReturnValue
True, если операция завершилась успешно.
См. также
- Typedef ArrayPtr
- Class String
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
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
Объединяет два документа Pdf в новый документ Pdf, размещая страницы попеременно и заполняя пустые места пустыми страницами. Например: document1 имеет 5 страниц: p1, p2, p3, p4, p5. document2 имеет 3 страницы: p1’, p2’, p3’. Объединение двух документов Pdf создаст результирующий документ со страницами: 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)
| Параметр | Тип | Описание |
|---|---|---|
| firstInputStream | const System::SharedPtr<System::IO::Stream>& | Первый поток Pdf. |
| secInputStream | const System::SharedPtr<System::IO::Stream>& | Второй поток Pdf. |
| blankPageStream | const System::SharedPtr<System::IO::Stream>& | Поток Pdf с пустой страницей. |
| outputStream | const System::SharedPtr<System::IO::Stream>& | Выводит Pdf поток. |
ReturnValue
True, если операция завершилась успешно.
См. также
- Typedef SharedPtr
- Class Stream
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Concatenate(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::IO::Stream>&) method
Объединяет два файла.
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)
| Параметр | Тип | Описание |
|---|---|---|
| firstInputStream | const System::SharedPtr<System::IO::Stream>& | Поток первого файла. |
| secInputStream | const System::SharedPtr<System::IO::Stream>& | Поток второго файла. |
| outputStream | const System::SharedPtr<System::IO::Stream>& | Поток, в котором будет сохранён результирующий файл. |
ReturnValue
True, если операция завершилась успешно.
См. также
- Typedef SharedPtr
- Class Stream
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Concatenate(const System::String&, const System::String&, const System::String&, const System::String&) method
Объединяет два документа Pdf в новый документ Pdf, размещая страницы попеременно и заполняя пустые места пустыми страницами. Например: document1 имеет 5 страниц: p1, p2, p3, p4, p5. document2 имеет 3 страницы: p1’, p2’, p3’. Объединение двух документов Pdf создаст результирующий документ со страницами: 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)
| Параметр | Тип | Описание |
|---|---|---|
| firstInputFile | const System::String& | Первый файл. |
| secInputFile | const System::String& | Второй файл. |
| blankPageFile | const System::String& | PDF файл с пустой страницей. |
| outputFile | const System::String& | Файл результата. |
ReturnValue
True, если операция завершилась успешно.
См. также
- Class String
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
PdfFileEditor::Concatenate(const System::String&, const System::String&, const System::String&) method
Объединяет два файла.
bool Aspose::Pdf::Facades::PdfFileEditor::Concatenate(const System::String &firstInputFile, const System::String &secInputFile, const System::String &outputFile)
| Параметр | Тип | Описание |
|---|---|---|
| firstInputFile | const System::String& | Первый файл для объединения. |
| secInputFile | const System::String& | Второй файл для объединения. |
| outputFile | const System::String& | Выходной файл. |
ReturnValue
True, если операция завершилась успешно.
См. также
- Class String
- Class PdfFileEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++