Perl Cloud SDK for Spreadsheet Processing
Perl Cloud SDK wraps Aspose.Cells Cloud API. The SDK enhances your Android apps to process & manipulate Microsoft Excel spreadsheets in the cloud, without requiring Microsoft Office®.
Excel File Manipulation in the Cloud
- Create Excel files from scratch via API or Smart Markers.
- Load, process & convert Excel files via Cloud SDK.
- Add, update or delete worksheet, charts, pictures, shapes, hyperlinks & validations.
- Add or remove cells area for conditional formatting from Excel worksheets.
- Insert or delete, horizontal or vertical page breaks.
- Add ListObject or convert ListObjects to a range of cells.
- Summarize data with Pivot Tables & Excel charts.
- Apply custom criteria to list filters of various types.
- Get, update, show or hide chart legend & titles.
- Manipulate page setup, header & footer.
- Create, update, fetch or delete document properties.
- Fetch the required shape from worksheet.
- Leverage the power of named ranges.
Feature & Enhancements in Version 23.11
Full list of issues covering all changes in this release:
- Optimize import xml data into Excel file.
- Optimize import json data into Excel file.
- Remove deprecated functions, class and test case.
Read & Write Spreadsheet Formats
Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM OpenOffice: ODS SpreadsheetML: XML Text: CSV, TSV, TXT (TabDelimited) Web: HTML, MHTML
Save Spreadsheets As
Microsoft Excel: XLS, XLSX, XLSB OpenOffice: ODS SpreadsheetML: XML Text: CSV, TSV, TXT (TabDelimited) Web: HTML, MHTML Fixed Layout: PDF, XPS Images: PNG, JPG, TIFF, SVG Markdown: MD Other: DIF
Read Other Formats
SXC, FODS
Get Started with Aspose.Cells Cloud SDK for Perl
Please create an account at Aspose for Cloud and get your application information. The complete source code is available in this repository folder. You can either directly use it in your projector get CPAN distribution (recommended).
Convert an Excel File via Perl
my $grant_type = 'client_credentials'; # replace NULL with a proper value
my $client_id = $ENV{'CellsCloudClientId'}; # replace NULL with a proper value
my $client_secret = $ENV{'CellsCloudClientSecret'}; # replace NULL with a proper value
my $config = AsposeCellsCloud::Configuration->new('base_url' =>$ENV{'CellsCloudApiBaseUrl'},'api_version' => 'v3.0', client_id => $client_id, client_secret => $client_secret);
my $client = AsposeCellsCloud::ApiClient->new( $config);
my $api = AsposeCellsCloud::CellsApi->new($client);
my $remoteFolder = 'TestData/In';
my $localName = 'cloud.png';
my $remoteName = 'cloud.png';
my $format = 'png';
my $mapFiles = {};
$mapFiles->{$localName}= "TestData/".$localName ;
my $request = AsposeCellsCloud::Request::PutConvertWorkbookRequest->new();
$request->{file} = $mapFiles;
$request->{format} = $format;
my $result = $api->put_convert_workbook(request=> $request);
Aspose.Cells Cloud SDKs in Popular Languages
.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