使用Cells Cloud SDK for Perl将CHART对象导出为JPG格式文件
API
POST
https://api.aspose.cloud/v3.0/cells/export
将 CHART 对象从 Excel 文件导出到 JPG 文件是一项复杂的任务。将 CHART 导出为 JPG 格式转换由我们的 Perl SDK 执行,同时保留源 CHART 电子表格的主要结构和逻辑内容。我们的 Perl 库是在线将 CHART 对象导出为 JPG 格式文件的专业解决方案。该Cloud SDK为Perl开发者提供了强大的功能和完美的JPG输出。
Perl 中的代码示例使用 REST API 将电子表格中的 CHART 导出为 JPG 格式
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl/
use strict;
use warnings;
use utf8;
use File::Slurp;
use MIME::Base64;
use AsposeCellsCloud::LightCellsApi;
my $config = AsposeCellsCloud::Configuration->new( client_id => $ENV{'ProductClientId'}, client_secret => $ENV{'ProductClientSecret'});
my $instance = AsposeCellsCloud::LightCellsApi->new(AsposeCellsCloud::ApiClient->new( $config));
my $filemap = { 'Book1.xlsx' => '~/TestData/Book1.xlsx', 'myDocument.xlsx' => ~/TestData/myDocument.xlsx'};
my $result = $instance->post_export(file => $filemap , object_type => 'chart',format => 'jpg');
my $decoded = decode_base64($result->{'files'}[0]->{'file_content'});
open(my $fh, '>',$result->{'files'}[0]->{'filename'}) or die "Could not open file!";
binmode $fh;
print $fh $decoded;
close $fh;
如何使用Perl云SDK将Excel CHART中的对象导出为JPG
- 注册一个帐户仪表板获取免费API配额和授权详细信息
- 使用您的客户端 ID、客户端密钥、基本 URL 和 API 版本初始化 Cells API。
- 调用post_export方法获取结果流
系统要求
- Perl 5