輕鬆合併 PDF 文檔並將結果導出為 Ruby 代碼中的 PNG 圖形格式。這個 Ruby 庫旨在使用 REST API 將多個 PDF 文件組合成單個 PNG 圖像,即通過 Internet 傳遞 HTTPS 調用。
這是一個專業的雲原生 PDF 到 PNG 合併解決方案,為 Ruby 程序員提供了極大的開發靈活性和強大的功能。通過合併文檔,您可以自動化您的數字 PDF/PNG 工作流程,並將流程的一些常規部分卸載到快速高效的 PDF 處理 Ruby 軟件。
在許多情況下,您可能需要將 PDF 文件組合成一個 PNG 圖像。例如,您可能希望在打印或歸檔之前將多個 PDF 文件組合在一起。
PDF 合併可以是整個集成文檔處理方法的一部分,用於從不同的數據源生成 PNG 圖像。此類任務涉及使用功能齊全的 PDF/PNG 操作 Ruby 庫,該庫將處理一組 PDF 文件並在盡可能短的時間內將它們合併在一起,從而產生緊湊而準確的圖形輸出。
要在 Ruby 中執行 PDF 到 PNG 的合併,您至少需要兩個源 PDF 文檔。如需快速入門,請查看下面的 Ruby 代碼示例。
require 'aspose_words_cloud'
AsposeWordsCloud.configure do |config|
config.client_data['ClientId'] = '####-####-####-####-####'
config.client_data['ClientSecret'] = '##################'
end
@words_api = WordsAPI.new
document = File.open('Input1.pdf')
mergeProps = DocumentEntry.new({
:FileReference => AsposeWordsCloud::FileReference.fromRemoteFilePath('Input2.pdf'),
:ImportFormatMode => 'KeepSourceFormatting'})
document_entries = [mergeProps]
document_list = DocumentEntryList.new({:DocumentEntries => document_entries})
append_document_online = AppendDocumentOnlineRequest.new(document: document,
document_list: document_list)
merged_docs = @words_api.append_document_online(append_document_online)
split_document_online = SplitDocumentOnlineRequest.new(document: merged_docs,
format: 'png', zip_output: true)
@words_api.split_document_online(split_document_online)
使用 RubyGems 託管服務安裝 Aspose.Words Cloud SDK for Ruby 。運行 gem install aspose_words_cloud 來安裝包。作為替代方案,您可以從 GitHub 手動克隆 Aspose.Words Cloud SDK for Ruby 源代碼並在您的項目中使用它。請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。