Speichern Sie eine XLTX-Datei als GIF unter PHP
API
POST
https://api.aspose.cloud/v3.0/cells/{name}/SaveAs
Das Speichern von Dateiformaten von XLTX als GIF ist eine komplexe Aufgabe. Alle Formatübergänge von XLTX in GIF werden von unserem SDK PHP durchgeführt, wobei der strukturelle und logische Hauptinhalt der Quelltabelle XLTX erhalten bleibt. Unsere Bibliothek PHP ist eine professionelle Lösung zum Online-Speichern von XLTX als GIF-Dateien. Dieses Cloud-SDK bietet Entwicklern PHP leistungsstarke Funktionen und eine perfekte GIF-Ausgabe.
PHP Codebeispiel zum Speichern von XLTX als GIF mit REST API
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-php/
$apiInstance = new CellsApi( getenv("ProductClientId"),getenv("ProductClientSecret") );
$name ='Book1.xltx';
$saveOptions =new \Aspose\Cells\Cloud\Model\SaveOptions();
$saveOptions->SaveFormat = "gif";
$newfilename = "Book1Saveas.gif";
$isAutoFitRows= 'true';
$isAutoFitColumns= 'true';
$folder = "Temp";
$result = $apiInstance->cellsSaveAsPostDocumentSaveAs($name, $saveOptions, $newfilename,$isAutoFitRows, $isAutoFitColumns, $folder);
So speichern Sie XLTX als GIF mithilfe der Cells Cloud PHP-Bibliothek.
- Registrieren Sie ein Konto unterArmaturenbrett um ein kostenloses API-Kontingent und Autorisierungsdetails zu erhalten
- Installieren Sie die Bibliothek PHP und fügen Sie die Referenz (importieren Sie die Bibliothek) zu Ihrem Projekt hinzu.
- Öffnen Sie die Quelldatei in PHP.
- Verwenden Sie die Methode `PostWorkbookSaveAs`, um den resultierenden Stream abzurufen.
System Anforderungen
- PHP 7.4 oder neuer