Speichern Sie eine MHTML-Datei als TIFF in NodeJS
API
POST
https://api.aspose.cloud/v3.0/cells/{name}/SaveAs
Das Speichern von Dateiformaten aus MHTML als TIFF ist eine komplexe Aufgabe. Alle Formatübergänge von MHTML in das Format TIFF werden von unserem NodeJS SDK durchgeführt, wobei der strukturelle und logische Hauptinhalt der Quell-MHTML-Tabelle erhalten bleibt. Unsere NodeJS-Bibliothek ist eine professionelle Lösung, um MHTML als TIFF-Dateien online zu speichern. Dieses Cloud SDK bietet NodeJS-Entwicklern leistungsstarke Funktionalität und eine perfekte TIFF-Ausgabe.
NodeJS-Codebeispiel zum Speichern von MHTML als TIFF unter Verwendung von REST API
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-node/
const { CellsApi, CellsSaveAs_PostDocumentSaveAsRequest } = require("asposecellscloud");
const cellsApi = new CellsApi(process.env.ProductClientId, process.env.ProductClientSecret);
var req = new CellsSaveAs_PostDocumentSaveAsRequest({
name: "Book1.mhtml",
folder: "CellsTests",
newfilename: "Book1Saveas.tiff",
});
cellsApi.cellsSaveAsPostDocumentSaveAs(req)
.then((result) => {
console.log(result)
});
So speichern Sie MHTML als TIFF mithilfe der Cloud NodeJS-Bibliothek Cells.
- Registrieren Sie ein Konto unterArmaturenbrett um ein kostenloses API-Kontingent und Autorisierungsdetails zu erhalten
- Installieren Sie die NodeJS-Bibliothek und fügen Sie die Referenz (importieren Sie die Bibliothek) zu Ihrem Projekt hinzu.
- Öffnen Sie die Quelldatei in JavaScript.
- Verwenden Sie die Methode `PostWorkbookSaveAs`, um den resultierenden Stream abzurufen.
System Anforderungen
- Node v6.17.1 oder neuer