Easily merge DOCX to PDF format in C++ code. This C++ library is designed to combine multiple DOCX files into a single PDF file using the REST API, i.e. by passing HTTPS calls over the Internet.
This is a professional Cloud-native DOCX to PDF merging solution that provides C++ programmers with both great development flexibility and powerful features. Joining DOCX files together is often used when it is necessary to create a set of PDF documents of the same structure, each of which contains unique data. By merging files, you can automate your digital DOCX/PDF workflows and offload some routine parts of the process to fast and efficient document-processing C++ software.
You may need to combine DOCX files into a single PDF file in many cases. For example, you may want to combine multiple DOCX files together before printing or archiving.
DOCX merging can be part of a whole integrated document-processing approach for generating PDF documents from disparate data sources. Such tasks involve the use of a full-featured DOCX/PDF manipulation C++ library that will process a set of DOCX files and merge them together in the shortest possible time, producing a compact and accurate PDF result.
To perform DOCX to PDF merging in C++, you need at least two source DOCX files. For a quick start, please check out the C++ code example below.
using namespace aspose::words::cloud;
auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####",
L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);
auto document = std::shared_ptr<std::istream>(new std::ifstream(
std::filesystem::path(L"Input1.docx"), std::istream::binary));
auto mergeDocument = std::make_shared<aspose::words::cloud::models::DocumentEntry>();
// Load a document to append from the Cloud storage.
mergeDocument->setFileReference(
std::make_shared<aspose::words::cloud::models::FileReference>(
std::make_shared<std::wstring>(L"Input2.docx"));
mergeDocument->setImportFormatMode(
std::make_shared<std::wstring>(L"KeepSourceFormatting"));
auto documentEntries =
std::make_shared<std::vector<std::shared_ptr<aspose::words::cloud::models::DocumentEntry>>>();
documentEntries->push_back(mergeDocument);
auto documentList =
std::make_shared<aspose::words::cloud::models::DocumentEntryList>();
documentList->setDocumentEntries(documentEntries);
std::shared_ptr<requests::AppendDocumentOnlineRequest> appendDocumentOnline(
new requests::AppendDocumentOnlineRequest(
document, documentList
)
);
wordsApi->appendDocumentOnline(appendDocumentOnline);
Clone Aspose.Words Cloud SDK for C++ source code from GitHub. You can find detailed information on building and configuring the SDK in the "How to use the SDK" section.
To quickly get the necessary security credentials and access our REST API, please follow these Instructions in the documentation.
Refer to the Repository Documentation to see the details.