Aspose.Cells Cloud
Aspose.Cells Cloud is a REST API that helps you create, manipulate and convert spreadsheets in the cloud. It allows you to work with all aspects of spreadsheets: worksheets, rows, columns, cells, text, data, images, links, comments, formulas, charts, and many more. Use Aspose.Cells Cloud to create spreadsheets from scratch, manipulate spreadsheets, and convert spreadsheets to other formats. Render a spreadsheet to image formats such as JPEG, PNG, SVG, GIF and TIFF, or render charts and other objects to images. Aspose.Cells Cloud allows you to convert a spreadsheet to different formats like PDF, XPS, TIFF and others. Use it to work with individual cells in a spreadsheet, or to add comments, hyperlinks and pictures to cells, or to apply validation rules. Aspose.Cells Cloud also makes working with rows, columns and cells easy. Read More
InstallingYou can install AsposeCellsCloud with RubyGem:
gem install aspose_cells_cloud
Source filesThis SDK is open source and available on GitHub and CodePlex.
- Aspose.Cells Cloud SDK for Ruby - v1.0.0 (GitHub)
- Aspose.Cells Cloud SDK for Ruby - v1.0.0 (CodePlex)
UsageAPIs of this SDK can be called as follows:
require 'aspose_cells_cloud'
class CellsUsage
include AsposeCellsCloud
include AsposeStorageCloud
def initialize
#Get App key and App SID from https://cloud.aspose.com
AsposeApp.app_key_and_sid("APP_KEY", "APP_SID")
@cells_api = CellsApi.new
end
def convert_work_book_to_pdf
#Convert workbook from request content to PDF format.
file_name = "myWorkbook.xlsx"
convert_to_format = "pdf"
file = File.open("data/" << file_name,"r") { |io| io.read }
response = @cells_api.put_convert_work_book(file, {format: convert_to_format})
end
end