The code to compress TIFF in Java

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

This is a professional solution to compress TIFF using Java. Use our TIFF optimization API to create portable, robust and secure software in Java. Try it online for free!

View code snippet

Compress TIFF file in Java

Make large TIFF files smaller without loss of quality. Delete unnecessary and unused data. Shrink the size of a TIFF file in code. The Java library provides developers with an integrated API to optimize TIFF content.

Reduce the size of TIFF files using Java

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

Lossless compression and deep content optimization made easy with 'Aspose.Words for Java'. The following example demonstrates how to optimize the content of a TIFF file in Java:

Code example in Java to compress TIFF files
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();
DocumentBuilder builder = new DocumentBuilder(doc);

Shape shape = builder.insertImage("Input.tiff");

// 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.TIFF);
saveOptions.setTiffCompression(TiffCompression.LZW);

doc.save("Output.tiff", saveOptions);
import com.aspose.words.*; Document doc = new Document("Input.tiff"); 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.tiff", saveOptions); import com.aspose.words.*; Document doc = new Document("Input.tiff"); 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.tiff"); import com.aspose.words.*; Document doc = new Document("Input.tiff"); 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.tiff", saveOptions); import com.aspose.words.*; Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); Shape shape = builder.insertImage("Input.tiff"); // 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.TIFF); saveOptions.setTiffCompression(TiffCompression.LZW); doc.save("Output.tiff", saveOptions);
Run code

How to compress TIFF Java

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

Java library to optimize and compress TIFF 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.

Other supported file format optimizations

You can optimize files in many other file formats:

5%

Subscribe to Aspose Product Updates

Get monthly newsletters and offers directly delivered to your mailbox.

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