Optimize and compress files in Java

High-performance Java library to optimize file's content and size retaining the original quality and baseline data

Develop software using advanced document optimising API to create portable, robust and secure software in Java. This is a powerful solution to compress Word, Web documents using Java.

View code snippet

Compress Word documents in Java

Make large files smaller without loss of quality. Delete unnecessary and unused data. Shrink the size of Word and HTML files in Java. Our Java library provides developers with an integrated API to optimize documents in various formats.

This Java library is a stand-alone solution and doesn't require any third party software installed.

Reduce the size of Word and HTML files using Java

The maximum effect can be obtained by optimizing high-resolution images, as well as documents containing such images. Our Java library will help you to compress DOCX, DOC, RTF, ODT, EPUB, HTML, JPG, PNG files.

Optimization of documents without loss of quality made easy with 'Aspose.Words for Java'. The following example shows how to shrink the size of a Word document in Java:

Java code example to optimize file's content and size
Upload a file you want to optimize/compress
Run code
Select the target format from the list
import com.aspose.words.*;

Document doc = new Document("Input.docx");
doc.cleanup();

NodeCollection nodes = doc.getChildNodes(NodeType.SHAPE, true);
for (Shape shape : (Iterable<Shape>) nodes)
{
    if (shape.isImage())
    {
        // It's up to developer to choose the library for image compression.
        BufferedImage image = ImageIO.read(shape.getImageData().toStream());

        // ...
        // Compress image and set it back to the shape.
        shape.getImageData().setImage("yourCompressedImage");
    }
}

OoxmlSaveOptions saveOptions = new OoxmlSaveOptions();
saveOptions.setCompressionLevel(CompressionLevel.MAXIMUM);

doc.save("Output.docx", saveOptions);
import com.aspose.words.*; Document doc = new Document("Input.docx"); doc.cleanup(); NodeCollection nodes = doc.getChildNodes(NodeType.SHAPE, true); for (Shape shape : (Iterable<Shape>) nodes) { if (shape.isImage()) { // It's up to developer to choose the library for image compression. BufferedImage image = ImageIO.read(shape.getImageData().toStream()); // ... // Compress image and set it back to the shape. shape.getImageData().setImage("yourCompressedImage"); } } OoxmlSaveOptions saveOptions = new PdfSaveOptions(); saveOptions.setCacheBackgroundGraphics(true); doc.save("Output.docx", saveOptions); import com.aspose.words.*; Document doc = new Document("Input.docx"); doc.cleanup(); NodeCollection nodes = doc.getChildNodes(NodeType.SHAPE, true); for (Shape shape : (Iterable<Shape>) nodes) { if (shape.isImage()) { // It's up to developer to choose the library for image compression. BufferedImage image = ImageIO.read(shape.getImageData().toStream()); // ... // Compress image and set it back to the shape. shape.getImageData().setImage("yourCompressedImage"); } } doc.save("Output.docx"); import com.aspose.words.*; Document doc = new Document("Input.docx"); doc.cleanup(); NodeCollection nodes = doc.getChildNodes(NodeType.SHAPE, true); for (Shape shape : (Iterable<Shape>) nodes) { if (shape.isImage()) { // It's up to developer to choose the library for image compression. BufferedImage image = ImageIO.read(shape.getImageData().toStream()); // ... // Compress image and set it back to the shape. shape.getImageData().setImage("yourCompressedImage"); } } OoxmlSaveOptions saveOptions = new OoxmlSaveOptions(); saveOptions.setCompressionLevel(CompressionLevel.MAXIMUM); doc.save("Output.docx", saveOptions); import com.aspose.words.*; Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); Shape shape = builder.insertImage("Input.docx"); // Update page settings to crop the document to fit the size of the picture. PageSetup pageSetup = builder.getPageSetup(); pageSetup.setPageWidth(shape.getWidth()); pageSetup.setPageHeight(shape.getHeight()); pageSetup.setTopMargin(0); pageSetup.setLeftMargin(0); pageSetup.setBottomMargin(0); pageSetup.setRightMargin(0); ImageSaveOptions saveOptions = new ImageSaveOptions(SaveFormat.DOCX); doc.save("Output.docx", saveOptions);
Run code

How to compress a file Java: Word, PDF, GIF, ZIP

  1. Install Aspose.Words for Java.
  2. Add a library reference (import the library) to your Java project.
  3. Open the source file in Java.
  4. Compress documents and images without losing quality.
  5. Call the Document.cleanup() method. The resulting code may vary depending on the input/output file formats.
  6. Get the result as a compressed file.

Java library to optimize and compress files

We host our Java packages in Maven repositories. 'Aspose.Words for Java' is a common JAR file containing byte-code. Please follow the step-by-step instructions on how to install it to your Java developer environment.

System Requirements

Java SE 7 and more recent Java versions are supported. We also provide a separate package for Java SE 6 in case you are obliged to use this outdated JRE.

Our Java package is cross-platform and runs on all operating systems with JVM implementation, including Microsoft Windows, Linux, macOS, Android and iOS.

For information on optional package dependencies, such as JogAmp JOGL, Harfbuzz font engine, Java Advanced Imaging JAI, please refer to Product Documentation.

5%

Subscribe to Aspose Product Updates

Get monthly newsletters and offers directly delivered to your mailbox.

© Aspose Pty Ltd 2001-2024. All Rights Reserved.