在 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 以查看詳細信息。