Exportera SHAPE-objekt till SVG filformat med Cells Cloud SDK för Perl
API
POST
https://api.aspose.cloud/v3.0/cells/export
Exportera SHAPE-objekt till filen SVG från filen Excel är en komplex uppgift. Exportera SHAPE till SVG formatövergångar utförs av vår Perl SDK samtidigt som källformatet SHAPEs huvudsakliga strukturella och logiska innehåll bibehålls. Vårt Perl-bibliotek är en professionell lösning för att exportera SHAPE-objekt till filer i SVG-format online. Denna Cloud SDK ger Perl-utvecklare kraftfull funktionalitet och perfekt SVG-utdata.
Kodexempel i Perl med REST API för att exportera SHAPE till SVG-format från kalkylark
# 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 => 'shape',format => 'svg');
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;
Hur man använder Cells Cloud SDK för Perl för att exportera objekt från Excel SHAPE till SVG
- Registrera ett konto påinstrumentbräda för att få gratis API kvot & auktoriseringsinformation
- Initiera Cells API med ditt klient-ID, klienthemlighet, basadress och version API.
- Anrop post_export-metoden för att hämta den resulterande strömmen
Systemkrav
- Perl 5