GitHub license CPAN

Aspose.Cells Cloud for Perl enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.

Perl module for Aspose.Cells Cloud

Enhance your Perl applications with the Aspose.Cells Cloud , enabling seamless integration with Excel, ODS, CSV, Json and other spreadsheet document formats. With its powerful APIs, developers can effortlessly read, convert, create, edit, and manipulate the contents of Excel documents without the need for any office software installed on the machine

Manipulate Excel and other spreadsheet files in the Cloud

Feature & Enhancements in Version 24.12

Full list of issues covering all changes in this release:

Support file format

|Format|Description|Load|Save| | :- | :- | :- | :- | |XLS|Excel 95/5.0 - 2003 Workbook.|√|√| |XLSX|Office Open XML SpreadsheetML Workbook or template file, with or without macros.|√|√| |XLSB|Excel Binary Workbook.|√|√| |XLSM|Excel Macro-Enabled Workbook.|√|√| |XLT|Excel 97 - Excel 2003 Template.|√|√| |XLTX|Excel Template.|√|√| |XLTM|Excel Macro-Enabled Template.|√|√| |XLAM|An Excel Macro-Enabled Add-In file that's used to add new functions to Excel.| |√| |CSV|CSV (Comma Separated Value) file.|√|√| |TSV|TSV (Tab-separated values) file.|√|√| |TabDelimited|Tab-delimited text file, same with TSV file.|√|√| |TXT|Delimited plain text file.|√|√| |HTML|HTML format.|√|√| |MHTML|MHTML file.|√|√| |ODS|ODS (OpenDocument Spreadsheet).|√|√| |SpreadsheetML|Excel 2003 XML file.|√|√| |Numbers|The document is created by Apple's "Numbers" application which forms part of Apple's iWork office suite, a set of applications which run on the Mac OS X and iOS operating systems.|√|| |JSON|JavaScript Object Notation|√|√| |DIF|Data Interchange Format.| |√| |PDF|Adobe Portable Document Format.| |√| |XPS|XML Paper Specification Format.| |√| |SVG|Scalable Vector Graphics Format.| |√| |TIFF|Tagged Image File Format| |√| |PNG|Portable Network Graphics Format| |√| |BMP|Bitmap Image Format| |√| |EMF|Enhanced metafile Format| |√| |JPEG|JPEG is a type of image format that is saved using the method of lossy compression.| |√| |GIF|Graphical Interchange Format| |√| |MARKDOWN|Represents a markdown document.| |√| |SXC|An XML based format used by OpenOffice and StarOffice|√|√| |FODS|This is an Open Document format stored as flat XML.|√|√| |DOCX|A well-known format for Microsoft Word documents that is a combination of XML and binary files.||√| |PPTX|The PPTX format is based on the Microsoft PowerPoint open XML presentation file format.||√|

Quick Start Guide

To begin with Aspose.Cells Cloud, here's what you need to do:

  1. Sign up for an account at Aspose for Cloud to obtain your application details.
  2. Install the Aspose.Cells Cloud Perl module from the CPAN distribution.
  3. Use the conversion code provided below as a reference to add or modify your application.

Convert an Excel File Using Perl

use lib 'lib';
use strict;
use warnings;
use File::Slurp;
use MIME::Base64;
use AsposeCellsCloud::CellsApi;

my $config = AsposeCellsCloud::Configuration->new( client_id => $ENV{'CellsCloudClientId'}, client_secret => $ENV{'CellsCloudClientSecret'});
my $instance = AsposeCellsCloud::CellsApi->new(AsposeCellsCloud::ApiClient->new( $config));

my $remoteFolder = 'TestData/In';

my $localName = 'Book1.xlsx';
my $remoteName = 'Book1.xlsx';

my $upload_file_request = AsposeCellsCloud::Request::UploadFileRequest->new( 'UploadFiles'=>{ $localName => $localName  }  ,'path'=>$remoteFolder . '/' . $remoteName );

my $format = 'csv';

my $mapFiles = {};           

 $mapFiles->{$localName}= "TestData/".$localName ;

my $request = AsposeCellsCloud::Request::PutConvertWorkbookRequest->new();
$request->{file} =  $mapFiles;
$request->{format} =  $format;
$instance->put_convert_workbook(request=> $request);

| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift | GO | |---|---|---|---|---|---|---|---|---| | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | | NuGet | Maven | Composer | PIP | GEM | NPM | Maven | POD | GO |

Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial

Release history version