Konvertieren Sie XLTX in TIFF

NodeJS-Bibliothek zum Konvertieren von XLTX in TIFF

Verwenden Sie die Konvertierung API von Cells Cloud, um benutzerdefinierte Tabellenkalkulations-Workflows in NodeJS-Projekten zu erstellen. Dies ist eine professionelle Lösung zum Online-Konvertieren von XLTX in TIFF und andere Dokumentformate mit NodeJS.

Konvertieren Sie XLTX in TIFF mit dem Cloud SDK Cells für NodeJS

API
PUT
https://api.aspose.cloud/v3.0/cells/convert

Das Konvertieren von Dateiformaten von XLTX in TIFF kann eine komplexe Aufgabe sein. Unser NodeJS SDK verarbeitet alle Formatkonvertierungen von XLTX in das Format TIFF und behält dabei den wichtigsten strukturellen und logischen Inhalt der XLTX-Quelltabelle bei. Unsere NodeJS-Bibliothek bietet eine professionelle Lösung für die Online-Konvertierung von XLTX-Dateien in TIFF-Dateien. Dieses Cloud SDK bietet NodeJS-Entwicklern leistungsstarke Funktionen und gewährleistet eine hochwertige TIFF-Ausgabe.

NodeJS-Codebeispiel für die Konvertierung von XLTX in TIFF mithilfe des Cloud SDK Cells

// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-node/
    const { CellsApi, CellsWorkbook_PutConvertWorkbookRequest } = require("asposecellscloud");
    const localPath = "../TestData/source/";
    var fs = require('fs');
    var path = require('path');
    const cellsApi = new CellsApi(process.env.ProductClientId, process.env.ProductClientSecret);
    var req = new CellsWorkbook_PutConvertWorkbookRequest({
        file: fs.createReadStream(localPath + "datasource.xltx"),
        format: "tiff",
    });
    cellsApi.cellsWorkbookPutConvertWorkbook(req)
        .then((result) => {
        console.log(result)
    });

So konvertieren Sie XLTX mithilfe der Cloud NodeJS-Bibliothek Cells in TIFF.

  1. Registrieren Sie ein Konto unterArmaturenbrett um ein kostenloses API-Kontingent und Autorisierungsdetails zu erhalten
  2. Installieren Sie die NodeJS-Bibliothek und fügen Sie die Referenz (importieren Sie die Bibliothek) zu Ihrem Projekt hinzu.
  3. Öffnen Sie die Quelldatei in JavaScript.
  4. Verwenden Sie die Methode `putConvertWorkbook`, um den resultierenden Stream abzurufen.

System Anforderungen

  1. Node v6.17.1 oder neuer