在 Dart 代碼中輕鬆將 PDF 合併為 XPS 格式。這個 Dart 庫旨在使用 REST API 將多個 PDF 文件組合成一個 XPS 文件,即通過 Internet 傳遞 HTTPS 調用。
這是一個專業的雲原生 PDF 到 XPS 合併解決方案,為 Dart 程序員提供了極大的開發靈活性和強大的功能。當需要創建一組相同結構的 XPS 文檔時,通常會使用將 PDF 文件連接在一起,每個文檔都包含唯一的數據。通過合併文件,您可以自動化您的數字 PDF/XPS 工作流程,並將流程的一些常規部分卸載到快速高效的文檔處理 Dart 軟件。
在許多情況下,您可能需要將 PDF 文件合併為一個 XPS 文件。例如,您可能希望在打印或歸檔之前將多個 PDF 文件組合在一起。
PDF 合併可以是整個集成文檔處理方法的一部分,用於從不同的數據源生成 XPS 文檔。此類任務涉及使用功能齊全的 PDF/XPS 操作 Dart 庫,該庫將處理一組 PDF 文件並在盡可能短的時間內將它們合併在一起,從而產生緊湊而準確的 XPS 結果。
要在 Dart 中執行 PDF 到 XPS 的合併,您至少需要兩個源 PDF 文件。如需快速入門,請查看下面的 Dart 代碼示例。
import 'package:aspose_words_cloud/aspose_words_cloud.dart';
final config = Configuration("####-####-####-####-####", "##################");
final wordsApi = WordsApi(config);
final document = (await File(
'Input1.pdf').readAsBytes()).buffer.asByteData();
final mergeDocument = DocumentEntry();
// 從雲存儲加載要附加的文檔。
mergeDocument.fileReference = FileReference.fromRemoteFile('Input2.pdf');
mergeDocument.importFormatMode = 'KeepSourceFormatting';
final documentEntries = [ mergeDocument ];
final documentList = DocumentEntryList();
documentList.documentEntries = documentEntries;
final appendDocumentOnline = AppendDocumentOnlineRequest(document, documentList);
await wordsApi.appendDocumentOnline(appendDocumentOnline);
從 GitHub 克隆 Aspose.Words Cloud SDK for Dart 源代碼並在您的項目中使用它。將此依賴項添加到您的 pubspec.yaml: dependencies: aspose_words_cloud: 22.4.0
請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。
請參閱 Repository Documentation 以查看詳細信息。