Exportieren Sie BILD von Excel nach SVG

Perl-Bibliothek zum Exportieren von PICTURE in die Datei SVG

Verwenden Sie Export API von Cells Cloud, um Excel Datei-interne Objekt-Workflows in Perl zu exportieren. Dies ist eine professionelle Lösung, um PICTURE online mit Perl aus einer Tabellenkalkulation in das Format SVG zu exportieren.

Exportieren Sie das PICTURE-Objekt in die Formatdatei SVG mit dem Cloud SDK Cells für Perl

API
POST
https://api.aspose.cloud/v3.0/cells/export

Das Exportieren des PICTURE-Objekts aus der Datei Excel in die Datei SVG ist eine komplexe Aufgabe. Der Export von PICTURE-Formatübergängen in das SVG-Format wird von unserem Perl-SDK durchgeführt, während der strukturelle und logische Hauptinhalt der PICTURE-Quelltabelle erhalten bleibt. Unsere Perl-Bibliothek ist eine professionelle Lösung, um PICTURE-Objekte online in Dateien im Format SVG zu exportieren. Dieses Cloud SDK bietet Perl Entwicklern leistungsstarke Funktionalität und eine perfekte SVG Ausgabe.

Codebeispiel in Perl mit REST API zum Exportieren von PICTURE in das Format SVG aus der Tabellenkalkulation

# 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 => 'picture',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;

So verwenden Sie Cells Cloud SDK für Perl, um Objekte von Excel PICTURE nach SVG zu exportieren

  1. Registrieren Sie ein Konto unterArmaturenbrett um ein kostenloses API-Kontingent und Autorisierungsdetails zu erhalten
  2. Initialisieren Sie Cells API mit Ihrer Client-ID, Ihrem Client-Geheimnis, Ihrer Basis-URL und Ihrer Version API.
  3. Rufen Sie die Methode post_export auf, um den resultierenden Stream zu erhalten

System Anforderungen

  1. Perl 5