تحويل XLSM إلى XLTX

مكتبة Perl لتحويل XLSM إلى XLTX

استخدم التحويل API من Cells Cloud لإنشاء سير عمل جدول بيانات مخصص في مشاريع Perl. يعد هذا حلاً احترافيًا لتحويل XLSM إلى XLTX وتنسيقات المستندات الأخرى عبر الإنترنت باستخدام Perl.

تحويل XLSM إلى XLTX باستخدام Cells Cloud SDK لـ Perl

API
PUT
https://api.aspose.cloud/v3.0/cells/convert

يمكن أن يكون تحويل تنسيقات الملفات من XLSM إلى XLTX مهمة معقدة. يتعامل SDK Perl الخاص بنا مع جميع تحويلات تنسيق XLSM إلى XLTX مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات XLSM المصدر. توفر مكتبتنا Perl حلاً احترافيًا لتحويل ملفات XLSM إلى XLTX عبر الإنترنت. يعمل Cloud SDK على تمكين مطوري Perl من الحصول على وظائف قوية ويضمن إخراج XLTX عالي الجودة.

Perl مثال على الكود لتحويل XLSM إلى XLTX باستخدام Cells Cloud SDK

# 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 AsposeCellsCloud::CellsApi;
    my $config = AsposeCellsCloud::Configuration->new( client_id => $ENV{'ProductClientId'}, client_secret => $ENV{'ProductClientSecret'});
    my $instance = AsposeCellsCloud::CellsApi->new(AsposeCellsCloud::ApiClient->new( $config));
    my $format = "xltx";
    my $Book1Data = undef;
    my $result =undef;
    my @fileinfos = stat("Book1.xlsm");
    my $filelength = $fileinfos[7];
    open(DATA, '<', "Book1.xlsm") or die "file can not open, $!";
    binmode(DATA);
    read (DATA, $Book1Data, $filelength);
    close (DATA); 
    $result = $instance->cells_workbook_put_convert_workbook(workbook => $Book1Data, format => $format);
    open(my $fh, '>', "Dest.xltx") or die "Could not open file!";
    binmode $fh;
    print $fh $result;
    close $fh;

كيفية تحويل XLSM إلى XLTX باستخدام مكتبة Cells Cloud Perl.

  1. تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
  2. قم بتثبيت حزمة Perl وأضف المرجع (استيراد المكتبة) إلى مشروعك.
  3. افتح الملف المصدر في Perl.
  4. استخدم طريقة `put_convert_workbook` لاسترداد الدفق الناتج.

متطلبات النظام

  1. Perl 5