Phát triển phần mềm xử lý tài liệu trong Node.js sử dụng Tối ưu Hóa Tài liệu API. Giải pháp Node.js mạnh mẽ này giúp bạn tối ưu hóa và giảm kích thước của tài liệu và hình ảnh một cách dễ dàng. Kiểm tra khả năng nén trực tuyến miễn phí!
Làm cho các tệp lớn nhỏ hơn mà không làm giảm chất lượng. Xóa dữ liệu không cần thiết và không sử dụng. Thu nhỏ kích thước của Word tệp và HTML trong JavaScript. Thư viện JavaScript của chúng tôi cung cấp cho các nhà phát triển một API tích hợp để tối ưu hóa tài liệu ở nhiều định dạng khác nhau.
Thư viện JavaScript này là một giải pháp độc lập và không yêu cầu cài đặt bất kỳ phần mềm bên thứ ba nào.
Hiệu ứng tối đa có thể đạt được bằng cách tối ưu hóa các hình ảnh có độ phân giải cao, cũng như các tài liệu có chứa các hình ảnh đó. Thư viện JavaScript của chúng tôi sẽ giúp bạn nén các tệp DOCX, DOC, RTF, ODT, EPUB, HTML, JPG, PNG.
Việc tối ưu hóa tài liệu mà không làm giảm chất lượng trở nên dễ dàng với 'Aspose.Words for Node.js via .NET'. Ví dụ sau cho thấy cách thu nhỏ kích thước của Word tài liệu trong JavaScript:
npm install @aspose/words
Sao chép
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()) {
// Tùy thuộc vào nhà phát triển để chọn thư viện để nén hình ảnh.
const imageData = shape.getImageData().toStream();
// ...
// Nén hình ảnh và đặt nó trở lại hình dạng.
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()) {
// Tùy thuộc vào nhà phát triển để chọn thư viện để nén hình ảnh.
const imageData = shape.getImageData().toStream();
// ...
// Nén hình ảnh và đặt nó trở lại hình dạng.
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()) {
// Tùy thuộc vào nhà phát triển để chọn thư viện để nén hình ảnh.
const imageData = shape.getImageData().toStream();
// ...
// Nén hình ảnh và đặt nó trở lại hình dạng.
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()) {
// Tùy thuộc vào nhà phát triển để chọn thư viện để nén hình ảnh.
const imageData = shape.getImageData().toStream();
// ...
// Nén hình ảnh và đặt nó trở lại hình dạng.
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.