Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use the following method for converting images to jpg. The problem with my solution is that it will reduce the quality to much.

What is a good way to maintain quality of the image, while reducing the file size?

def convertToJpg(currentImage) {
    try {
         InputStream inStreamCrop = new ByteArrayInputStream(currentImage)
         BufferedImage bufferedImage = ImageIO.read(inStreamCrop)

         // create a blank, RGB, same width and height, and a white background
         BufferedImage newBufferedImage = new BufferedImage(bufferedImage.getWidth(),
               bufferedImage.getHeight(), BufferedImage.TYPE_INT_RGB);
         newBufferedImage.createGraphics().drawImage(bufferedImage, 0, 0, Color.WHITE, null);

         ByteArrayOutputStream baos=new ByteArrayOutputStream()
         // write to jpeg file
         ImageIO.write(newBufferedImage, "jpg", baos);
         baos.flush()
         def image = baos.toByteArray()
         baos.close()
         return image

    } catch (IOException e) {
        e.printStackTrace();
    }
}
share|improve this question
1  
The compression obtained with JPEG will vary greatly based on the image contents. Once you've reduced the colors to produce a GIF or 8-bit PNG the compression you get from JPEG won't be as good. – Mark Ransom Dec 3 '12 at 16:35

2 Answers

You can control the quality of the JPEG by getting an ImageWriter object and setting it through the parameters. For example:

import javax.imageio.stream.*
import javax.imageio.*

BufferedImage bufferedImage = ImageIO.read(new File("test.png"));
float quality = 0.9;
ImageWriter writer = ImageIO.getImageWritersByFormatName("jpg").next();
ImageWriteParam param = writer.getDefaultWriteParam();
param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
param.setCompressionQuality(quality);
writer.setOutput(new FileImageOutputStream(new File("test.jpg")));
writer.write(null, new IIOImage(bufferedImage, null, null), param);

The quality parameter can range between 0 and 1, with 1 having the least compression. Try different values; I've found 0.9 is a good choice for low compression (but large file sizes).

Note that JPEG images are not supported with OpenJDK: ImageIO not able to write a JPEG file

share|improve this answer
can you provide the full code example using my code and your modification? – confile Dec 3 '12 at 17:51
I've updated my code to a fully working example. Also, note that JPG images can be problematic with OpenJDK; make sure you're using a Sun/Oracle JVM. – ataylor Dec 3 '12 at 18:20
do you have any idea for my error below? – confile Dec 4 '12 at 1:24
1  
The output stream must be an implementation of ImageOutputStream. – ataylor Dec 4 '12 at 3:08
1  
Wrap your ByteArrayOutputStream with a MemoryCacheImageOutputStream. – ataylor Dec 4 '12 at 15:47
show 2 more comments

I used this:

        InputStream inStreamCrop = new ByteArrayInputStream(currentImage)
        BufferedImage bufferedImage = ImageIO.read(inStreamCrop)

        // create a blank, RGB, same width and height, and a white background
        BufferedImage newBufferedImage = new BufferedImage(bufferedImage.getWidth(), bufferedImage.getHeight(), BufferedImage.TYPE_INT_RGB)
        newBufferedImage.createGraphics().drawImage(bufferedImage, 0, 0, Color.WHITE, null)
        ByteArrayOutputStream baos=new ByteArrayOutputStream()

        float quality = 0.9;
        ImageWriter writer = ImageIO.getImageWritersByFormatName("jpg").next()
        ImageWriteParam param = writer.getDefaultWriteParam()
        param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT)
        param.setCompressionQuality(quality)

        writer.setOutput(baos)
        writer.write(null, new IIOImage(newBufferedImage, null, null), param)
        def image = baos.toByteArray()
        baos.close()
        return image

But I got the following error:

Illegal output type!. Stacktrace follows:
Message: Illegal output type!
Line | Method
->>  202 | setOutput      in javax.imageio.ImageWriter
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
|    180 | setOutput      in com.sun.imageio.plugins.jpeg.JPEGImageWriter
|     48 | convertToJpg . in com.test.ToolService
|     69 | save           in com.test.UploadImageController

What went wrong?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.