تصدير كائن PICTURE إلى ملف بتنسيق TIFF باستخدام Cells Cloud SDK لـ Perl
API
POST
https://api.aspose.cloud/v3.0/cells/export
يعد تصدير كائن PICTURE إلى ملف TIFF من ملف Excel مهمة معقدة. يتم تنفيذ انتقالات تنسيق تصدير PICTURE إلى تنسيق TIFF بواسطة Perl SDK مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات PICTURE المصدر. تعد مكتبتنا Perl حلاً احترافيًا لتصدير كائنات PICTURE إلى ملفات بتنسيق TIFF عبر الإنترنت. يمنح Cloud SDK هذا مطوري Perl وظائف قوية وإخراج TIFF مثاليًا.
مثال على الكود في Perl باستخدام REST API لتصدير الصورة إلى تنسيق TIFF من جدول البيانات
# 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 => 'tiff');
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;
كيفية استخدام Cells Cloud SDK لـ Perl لتصدير الكائنات من Excel PICTURE إلى TIFF
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتهيئة Cells API باستخدام معرف العميل وسر العميل وعنوان URL الأساسي وإصدار API.
- قم باستدعاء طريقة post_export للحصول على الدفق الناتج
متطلبات النظام
- Perl 5