在 C++ 代碼中輕鬆將 PDF 合併為 Word 格式。這個 C++ 庫旨在使用 REST API 將多個 PDF 文件組合成一個 Word 文件,即通過 Internet 傳遞 HTTPS 調用。
這是一個專業的雲原生 PDF 到 Word 合併解決方案,為 C++ 程序員提供了極大的開發靈活性和強大的功能。當需要創建一組相同結構的 Word 文檔時,通常會使用將 PDF 文件連接在一起,每個文檔都包含唯一的數據。通過合併文件,您可以自動化您的數字 PDF/Word 工作流程,並將流程的一些常規部分卸載到快速高效的文檔處理 C++ 軟件。
在許多情況下,您可能需要將 PDF 文件合併為一個 Word 文件。例如,您可能希望在打印或歸檔之前將多個 PDF 文件組合在一起。
PDF 合併可以是整個集成文檔處理方法的一部分,用於從不同的數據源生成 Word 文檔。此類任務涉及使用功能齊全的 PDF/Word 操作 C++ 庫,該庫將處理一組 PDF 文件並在盡可能短的時間內將它們合併在一起,從而產生緊湊而準確的 Word 結果。
要在 C++ 中執行 PDF 到 Word 的合併,您至少需要兩個源 PDF 文件。如需快速入門,請查看下面的 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.pdf"), 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.pdf"));
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 以查看詳細信息。