在不损失质量的情况下使大文件变小。删除不必要和未使用的数据。在 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.