在不損失質量的情況下使大文件變小。刪除不必要和未使用的數據。在 JavaScript 中縮小 Word 和 HTML 文件的大小。我們的 JavaScript 庫為開發人員提供了一個集成的 API 來優化各種格式的文檔。
這個 JavaScript 庫是一個獨立的解決方案,不需要安裝任何第三方軟件。
通過優化高分辨率圖像以及包含此類圖像的文檔,可以獲得最大的效果。我們的 JavaScript 庫將幫助您壓縮 HTML、DOCX、DOC、RTF、ODT、EPUB、HTML、JPG、PNG 文件。
使用 'Aspose.Words for Node.js via .NET' 可以輕鬆優化文檔而不降低質量。以下示例顯示瞭如何在 JavaScript 中縮小 Word 文檔的大小:
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)
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.
This package is compatible with Node.js 14.17.0 or higher.