優化和壓縮JavaScript中的文件

高效能 Node.js 庫可最佳化文件和影像的大小和內容,同時保持其原始質量

使用文件優化API在Node.js中開發文件處理軟體。這個強大的 Node.js 解決方案可協助您輕鬆最佳化文件和映像並減少其大小。免費線上測試壓縮能力!

查看代碼片段

在 JavaScript 中壓縮 Word 和 HTML 文檔

在不損失質量的情況下使大文件變小。刪除不必要和未使用的數據。在 JavaScript 中縮小 Word 和 HTML 文件的大小。我們的 JavaScript 庫為開發人員提供了一個集成的 API 來優化各種格式的文檔。

這個 JavaScript 庫是一個獨立的解決方案,不需要安裝任何第三方軟件。

使用 JavaScript 減小 Word 和 HTML 文件的大小

通過優化高分辨率圖像以及包含此類圖像的文檔,可以獲得最大的效果。我們的 JavaScript 庫將幫助您壓縮 HTML、DOCX、DOC、RTF、ODT、EPUB、HTML、JPG、PNG 文件。

使用 'Aspose.Words for Node.js via .NET' 可以輕鬆優化文檔而不降低質量。以下示例顯示瞭如何在 JavaScript 中縮小 Word 文檔的大小:

JavaScript優化文件內容和大小的代碼示例
上傳要優化/壓縮的文件
運行代碼
從列表中選擇目標格式
npm install @aspose/words
複製
const aw = require('@aspose/words');

var doc = new aw.Document("Input.docx");
doc.cleanup();

var shapes = doc.getChildNodes(aw.NodeType.Shape, true)
for (var shape of shapes) {
    if (shape.hasImage()) {
        // 由開發人員選擇影像壓縮庫。
        const imageData = shape.getImageData().toStream();

        // ...
        // 壓縮影像並將其恢復為形狀。
        shape.getImageData().setImage(compressedImageBuffer);
    }
}

var saveOptions = new aw.Saving.OoxmlSaveOptions()
saveOptions.compressionLevel = aw.Saving.CompressionLevel.Maximum

doc.save("Output.docx", saveOptions)
const aw = require('@aspose/words'); var doc = new aw.Document("Input.docx"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // 由開發人員選擇影像壓縮庫。 const imageData = shape.getImageData().toStream(); // ... // 壓縮影像並將其恢復為形狀。 shape.getImageData().setImage(compressedImageBuffer); } } var saveOptions = new aw.Saving.PdfSaveOptions() saveOptions.cacheBackgroundGraphics = true doc.save("Output.docx", saveOptions) const aw = require('@aspose/words'); var doc = new aw.Document("Input.docx"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // 由開發人員選擇影像壓縮庫。 const imageData = shape.getImageData().toStream(); // ... // 壓縮影像並將其恢復為形狀。 shape.getImageData().setImage(compressedImageBuffer); } } doc.save("Output.docx") const aw = require('@aspose/words'); var doc = new aw.Document("Input.docx"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // 由開發人員選擇影像壓縮庫。 const imageData = shape.getImageData().toStream(); // ... // 壓縮影像並將其恢復為形狀。 shape.getImageData().setImage(compressedImageBuffer); } } var saveOptions = new aw.Saving.OoxmlSaveOptions() saveOptions.compressionLevel = aw.Saving.CompressionLevel.Maximum doc.save("Output.docx", saveOptions) const aw = require('@aspose/words'); var doc = new aw.Document() var builder = new aw.DocumentBuilder(doc) shape = builder.insertImage("Input.docx") var saveOptions = new aw.Saving.ImageSaveOptions(aw.SaveFormat.Docx) shape.getShapeRenderer().save("Output.docx", saveOptions)
運行代碼

JavaScript如何壓縮PDF、 Word 、JPG等文件格式

  1. 安裝Aspose.Words for Node.js via .NET 。
  2. 將庫引用(導入庫)添加到您的JavaScript項目。
  3. 在JavaScript中打開源文件。
  4. 在不損失質量的情況下壓縮文檔和圖像。
  5. 調用Document.cleanup()方法。結果代碼可能因輸入/輸出文件格式而異。
  6. 將結果作為壓縮文件獲取。

JavaScript庫來優化和壓縮文件

We host our Node.js via .Net packages in NPM repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Node.js via .NET" to your developer environment.

System Requirements

This package is compatible with Node.js 14.17.0 or higher.

最流行的文件格式進行優化

5%

訂閱 Aspose 產品更新

獲取直接發送到您的郵箱的每月通訊和優惠。

© Aspose Pty Ltd 2001-2024. 版權所有。