在 C++ 代码中轻松地将各种格式的文档合并在一起。这个 C++ 库旨在使用 REST API 将 Word、PDF、Web 文档以及图像组合成一个文档,即通过 Internet 传递 HTTPS 调用。
这是一个专业的云原生文档合并解决方案,为 C++ 程序员提供了极大的开发灵活性和强大的功能。当需要创建一组具有相同结构的文档时,通常使用将文件连接在一起,每个文档都包含唯一的数据。通过合并文档和图像,您可以自动化您的数字工作流程,并将流程的一些常规部分卸载到快速高效的文档处理 C++ 软件。
在许多情况下,您可能需要将文档和图像组合在一起。例如,您可能希望在打印或存档之前将多个图像组合在一起。
将文档和图像合并在一起可以成为从不同数据源创建文档的整个集成技术的一部分。此类任务涉及使用功能齐全的文件格式操作 C++ 库,该库将处理文件集并在尽可能短的时间内将它们合并在一起,从而创建紧凑而准确的输出。
要在 C++ 中合并文档,您至少需要两个源文件。如需快速入门,请查看下面的 C++ 代码示例。
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>();
// 从云存储加载要附加的文档。
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);
从 GitHub 克隆 Aspose.Words Cloud SDK for C++ 源代码。您可以在 "How to use the SDK" 部分找到有关构建和配置 SDK 的详细信息。
要快速获取必要的安全凭证并访问我们的 REST API,请按照文档中的这些 Instructions 进行操作。
请参阅 Repository Documentation 以查看详细信息。