GroupDocs.Viewer for Cloud 我們很高興推出 GroupDocs.Viewer Cloud 的 Ruby SDK。此 SDK 支持 GroupDocs.Viewer Cloud API 中引入的所有功能。 Ruby SDK 中提供了大量測試用例,可幫助您了解 GroupDocs.Viewer Cloud API 並輕鬆在 Ruby 應用程序中實現其功能。請點擊此處了解更多詳情。 GroupDocs.Viewer Cloud API 支持多種文檔格式。它允許以 HTML 或圖像形式呈現整個文檔、逐頁或自定義頁面範圍的受支持文檔。它還提供了一些很酷的功能,例如水印和轉換(旋轉、重新排序)。
GroupDocs.Viewer Ruby SDK介紹
CloudGroupDocs.Viewer Cloud Ruby SDK 是為其 Ruby 用戶引入的。它是 REST API 的包裝器,允許您在 Ruby 平台中快速輕鬆地使用 GroupDocs.Viewer Cloud REST API,獲得強類型和 IDE 亮點的所有優勢。該發行版可在 GitHub 上獲取。所有主要功能的實現都可以在 Ruby 示例部分找到,一些值得注意的示例是:
安裝
您需要安裝 Ruby gem 才能與 GroupDocs.Viewer Cloud API 進行通信。 GroupDocs\Viewer\Cloud 的 gem 可以在 rubygems.org 上找到。您可以使用以下命令安裝它:
gem install groupdocs_viewer_cloud
要添加對應用程序的依賴項,請將以下內容複製到 Gemfile 中並運行
gem "groupdocs_viewer_cloud", "~> 18.7"
bundle install:
入門
一旦您在項目中完成了 gem 和依賴項的安裝,您就可以輕鬆地在 Ruby 代碼中調用 api 來使用 api 功能。以下是使用 Ruby SDK 演示 GroupDocs.Vewer Cloud API 工作原理的示例代碼。
加載寶石
require 'groupdocs_viewer_cloud'
在 https://dashboard.groupdocs.cloud 獲取您的 appsid 和 appkey(需要免費註冊)。
app_sid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
app_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
創建API類的實例
api = GroupDocsViewerCloud.from_keys(app_sid, app_key)
檢索支持的文件格式
response = api.get_supported_file_formats
打印出支持的文件格式
puts("Supported file-formats:")
response.formats.each do |format|
puts("#{format.file_format} (#{format.extension})")
end
GroupDocs.Viewer 雲資源
以下是完成任務可能需要的一些有用資源的鏈接。
- GroupDocs.Viewer 雲
- GroupDocs.Viewer雲在線文檔
- GroupDocs.Viewer 雲 UI 幫助主題
- GroupDocs.Viewer 雲論壇
- Web API Explorer(實例)
- GroupDocs.Viewer 雲 SDK
- 使用 Web GUI 使用 GroupDocs Cloud Storage or GroupDocs Cloud Service
- 使用 Web GUI 處理 GroupDocs 使用情況和日誌 or GroupDocs Cloud Service
立即開始免費試用
立即開始免費試用 – 您只需註冊 GroupDocs 雲服務。註冊後,您就可以嘗試 GroupDocs Cloud 提供的強大文件處理功能。