Exportieren Sie BILD von Excel nach TIFF

Go-Bibliothek zum Exportieren von PICTURE in die Datei TIFF

Verwenden Sie Export API von Cells Cloud, um interne Objektworkflows der Datei Excel in Go zu exportieren. Dies ist eine professionelle Lösung, um BILD online mit Go aus einer Tabellenkalkulation in das Format TIFF zu exportieren.

Exportieren Sie das PICTURE-Objekt mit dem Cloud SDK for Go Cells in eine Datei im Format TIFF

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 Go SDK durchgeführt, während der Hauptstruktur- und logische Inhalt der PICTURE-Quelltabelle erhalten bleibt. Unsere Go-Bibliothek ist eine professionelle Lösung zum Online-Export von PICTURE-Objekten in Dateien im Format TIFF. Dieses Cloud SDK bietet Go-Entwicklern leistungsstarke Funktionalität und eine perfekte TIFF-Ausgabe.

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

// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-go/
    package main
    import (
	    "encoding/base64"
	    "os"
	    asposecellscloud "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v22"
    )
    func main() {
	    instance := asposecellscloud.NewLightCellsApiService(os.Getenv("ProductClientId"), os.Getenv("ProductClientSecret"))
	    var files map[string]string
	    files = make(map[string]string)
	    files["Book1.xlsx"] = "C:/Book1.xlsx"
	    files["myDocument.xlsx"] = "C:/myDocument.xlsx"
	    postExportOpts := new(asposecellscloud.PostExportOpts)
	    postExportOpts.ObjectType = "picture"
	    postExportOpts.Format = "tiff"
	    filesresult, _, err := instance.PostExport(files, postExportOpts)
	    if err != nil {
		    return
	    }
	    print(filesresult.Files[0].Filename)
	    originalStringBytes, err1 := base64.StdEncoding.DecodeString(filesresult.Files[0].FileContent)
	    if err1 != nil {
		    return
	    }
	    f, err2 := os.Create(filesresult.Files[0].Filename)
	    if err2 != nil {
		    return
	    }
	    _, err3 := f.Write(originalStringBytes)
	    if err3 != nil {
		    return
	    }
	    f.Close()
    }

So verwenden Sie Cells Cloud SDK für Go, 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. Verwenden Sie die Methode `postExport`, um den resultierenden Stream abzurufen.

System Anforderungen

  1. Go-Version go1.13.0 oder neuer