تحويل BMP إلى TXT باستخدام Cells Cloud SDK لـ PHP
API
PUT
https://api.aspose.cloud/v3.0/cells/convert
يمكن أن يكون تحويل تنسيقات الملفات من BMP إلى TXT مهمة معقدة. يتعامل SDK PHP الخاص بنا مع جميع تحويلات تنسيق BMP إلى TXT مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول البيانات BMP المصدر. توفر مكتبتنا PHP حلاً احترافيًا لتحويل BMP إلى ملفات TXT عبر الإنترنت. يعمل Cloud SDK على تمكين مطوري PHP من الحصول على وظائف قوية ويضمن إخراج TXT عالي الجودة.
PHP مثال على الكود لتحويل BMP إلى TXT باستخدام 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.bmp';
$format ='txt';
$password = null;
$outPath = null;
$result = $this->instance->cellsWorkbookPutConvertWorkBook($path ,$format, $password, $outPath);
$size = $result->getSize();
$content = $result->fread($size);
$file = fopen("destfile.txt", 'w');
fwrite($file,$content);
fclose($file);
كيفية استخدام Cells Cloud SDK لـ PHP لتحويل ملفات Excel إلى تنسيقات أخرى BMP إلى TXT
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتهيئة Cells API باستخدام معرف العميل وسر العميل وعنوان URL الأساسي وإصدار API.
- استخدم طريقة `putConvertWorkbook` لاسترداد الدفق الناتج.
متطلبات النظام
- PHP 7.4 أو أحدث