Using the REST API in JavaScript, developers can compress documents in DOC, DOCX, RTF, PDF, and other formats. With the given solution, the output will be a high quality file after compression.
Using our powerful JavaScript API, developers can compress files to optimize content and output file size. Reducing file size occurs by cleaning up unused data and resources. You can also compress images to make the output file size even smaller.
The result of content optimization and compression can be saved in the original file format or any available save format – DOCX, DOC, RTF, PDF, HTML and many others.
As mentioned, our Node SDK allows you to programmatically reduce the size of a document in any supported format. For example, you can reduce the file size of PDF, DOCX, DOC, RTF, ODT, EPUB, HTML and other formats. And now you can try our powerful functionality and evaluate how to compress a document in JavaScript with the following example:
import * as fs from "fs";
const wordsApi = new WordsApi("####-####-####-####-####", "##################");
const requestDocument = fs.createReadStream("Input.docx");
const requestCompressOptions = new model.CompressOptions({
imagesQuality: 75,
imagesReduceSizeFactor: 1
})
const compressDocumentRequest = new model.CompressDocumentOnlineRequest({
document: requestDocument,
compressOptions: requestCompressOptions
});
wordsApi.compressDocumentOnline(compressDocumentRequest)
.then((compressDocumentResult) => {
const requestDocument = compressDocumentResult.Document.Values();
const convertDocument = new model.ConvertDocumentRequest({
document: requestDocument,
format: "docx"
});
wordsApi.convertDocument(convertDocument)
.then((convertDocumentResult) => {
console.log("Result of ConvertDocument: ", convertDocumentResult);
});
});
Install 'Aspose.Words Cloud SDK for Node.js' using NPM package manager. Run npm install asposewordscloud --save from the command line to install the SDK via the NPM package manager. As an alternative, you can manually clone Aspose.Words Cloud SDK for Node.js source code from GitHub and use it in your project. Please follow these Instructions to quickly get the necessary security credentials and access our REST API.
Refer to the Repository Documentation to see more details.