品質を損なうことなく、大きなファイルを小さくします。不要な未使用のデータを削除します。 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.