Exportieren Sie BILD von Excel nach TIFF

Python-Bibliothek zum Exportieren von PICTURE in die Datei TIFF

Verwenden Sie Export API von Cells Cloud, um Excel Datei-interne Objekt-Workflows in Python zu exportieren. Dies ist eine professionelle Lösung, um PICTURE online mit Python aus einer Tabellenkalkulation in das Format TIFF zu exportieren.

Exportieren Sie das PICTURE-Objekt in die Formatdatei TIFF mit dem Cloud SDK Cells für Python

API
POST
https://api.aspose.cloud/v3.0/cells/export

Das Exportieren des PICTURE-Objekts aus der Datei Excel in die Datei TIFF ist eine komplexe Aufgabe. Der Export von PICTURE-Formatübergängen in das TIFF-Format wird von unserem Python-SDK durchgeführt, während der strukturelle und logische Hauptinhalt der PICTURE-Quelltabelle erhalten bleibt. Unsere Python-Bibliothek ist eine professionelle Lösung, um PICTURE-Objekte online in Dateien im Format TIFF zu exportieren. Dieses Cloud SDK bietet Python Entwicklern leistungsstarke Funktionalität und eine perfekte TIFF Ausgabe.

Codebeispiel in Python mit REST API zum Exportieren von PICTURE in das Format TIFF aus der Tabellenkalkulation

# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/
    import os
    import base64
    from asposecellscloud.apis.light_cells_api import LightCellsApi
    cells_api = LightCellsApi(os.getenv('ProductClientId'),os.getenv('ProductClientSecret'))
    files ={ 
        "myDocument.xlsx" :  "c:/myDocument.xlsx",
        "Book1.xlsx" :  "c:/Book1.xlsx" 
        }
    result = cells_api.post_export(files ,"picture","tiff")
    base64_string  = result.files[0].file_content
    base64_bytes = base64_string.encode("ascii")
    sample_string_bytes = base64.b64decode(base64_bytes)
    f = open(result.files[0].filename, 'w+b')
    f.write(sample_string_bytes)
    f.close()    

So verwenden Sie Cells Cloud SDK für Python, um Objekte von Excel PICTURE nach TIFF zu exportieren

  1. Registrieren Sie ein Konto unterArmaturenbrett um ein kostenloses API-Kontingent und Autorisierungsdetails zu erhalten
  2. Initialisieren Sie Cells API mit Ihrer Client-ID, Ihrem Client-Geheimnis, Ihrer Basis-URL und Ihrer Version API.
  3. Rufen Sie die Methode post_export auf, um den resultierenden Stream zu erhalten

System Anforderungen

  1. Python 2.7 oder neuer
  2. Python 3.10 oder neuer