Մշակել Word-ի մշակման ծրագրակազմը Node.js - ում ' օգտագործելով Word Optimization API: Այս հզոր Node.js լուծումը կօգնի ձեզ առանց մեծ ջանքերի օպտիմալացնել և նվազեցնել Word ֆայլերի չափը: Փորձեք Word սեղմման հնարավորությունները առցանց անվճար:
Փոքրացրեք մեծ Word ֆայլերը՝ առանց որակի կորստի: Ջնջել ավելորդ և չօգտագործված տվյալները: Word ֆայլի չափը: JavaScript գրադարանը մշակողներին տրամադրում է ինտեգրված API՝ Word բովանդակությունը օպտիմալացնելու համար:
JavaScript գրադարանը ինքնուրույն լուծում է և չի պահանջում երրորդ կողմի ծրագրային ապահովման տեղադրում:
Անկորուստ սեղմումը և խորը բովանդակության օպտիմիզացումը հեշտացվել են 'Aspose.Words for Node.js via .NET': Հետևյալ օրինակը ցույց է տալիս, թե ինչպես կարելի է օպտիմալացնել 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)
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.
Դուք կարող եք օպտիմիզացնել ֆայլերը բազմաթիվ այլ ֆայլերի ձևաչափերով.