تحويل XLTX إلى PPTX باستخدام Cells Cloud SDK لـ PHP
API
PUT
https://api.aspose.cloud/v3.0/cells/convert
يمكن أن يكون تحويل تنسيقات الملفات من XLTX إلى PPTX مهمة معقدة. يتعامل SDK PHP الخاص بنا مع جميع تحويلات تنسيق XLTX إلى PPTX مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات XLTX المصدر. توفر مكتبتنا PHP حلاً احترافيًا لتحويل ملفات XLTX إلى PPTX عبر الإنترنت. يعمل Cloud SDK على تمكين مطوري PHP من الحصول على وظائف قوية ويضمن إخراج PPTX عالي الجودة.
PHP مثال على الكود لتحويل XLTX إلى PPTX باستخدام Cells Cloud SDK
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-php/
<?php
require_once('vendor\autoload.php');
use \Aspose\Cells\Cloud\Api\CellsApi;
$instance = new CellsApi(getenv("ProductClientId"),getenv("ProductClientSecret"));
$path ='Book1.xltx';
$format ='pptx';
$password = null;
$outPath = null;
$result = $this->instance->cellsWorkbookPutConvertWorkBook($path ,$format, $password, $outPath);
$size = $result->getSize();
$content = $result->fread($size);
$file = fopen("destfile.pptx", 'w');
fwrite($file,$content);
fclose($file);
كيفية تحويل XLTX إلى PPTX باستخدام مكتبة Cells Cloud PHP.
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتثبيت مكتبة PHP وأضف المرجع (استيراد المكتبة) إلى مشروعك.
- افتح الملف المصدر في PHP.
- استخدم طريقة `putConvertWorkbook` لاسترداد الدفق الناتج.
متطلبات النظام
- PHP 7.4 أو أحدث