I am doing a web project on media manager. I upload high resolution images and need to convert these images to low resolution, so that the resulting image is compressed into a smaller size. How is this possible using Java?

Please post source code, if possible.

Thanks, Naveen

link|improve this question

1  
Image compression or image resize/resampling? – Joey Nov 25 '09 at 16:53
Resizing is my guess. – Dave Jarvis Nov 25 '09 at 17:07
But the question is tagged "data-compression," so it's not crystal clear that it's dealing strictly with resampling. – Suppressingfire Nov 25 '09 at 17:46
feedback

4 Answers

up vote 1 down vote accepted

not sure if I got it right, but if you want to change the size of an image, the Image class has a getScaledInstance method:

Image theImage = ...
Image scaled = theImage.getScaledInstance(32, -1, Image.SCALE_FAST);

For details see the documentation of Image

link|improve this answer
naveen may also need to read/write the image to a JPG or PNG. – Suppressingfire Nov 25 '09 at 17:54
which, BTW can be done with IamgeIO: java.sun.com/javase/6/docs/api/javax/imageio/ImageIO.html – Suppressingfire Nov 25 '09 at 17:56
1  
Depending on your requirements, you may be better off with Image.SMOOTH than Image.SCALE_FAST. Otherwise, good call. – markusk Nov 25 '09 at 17:56
it's just an example... same for the size of 32 pixel... kind of hard without knowing all details. – Carlos Heuberger Nov 25 '09 at 17:59
feedback

I've seen JAI used for this purpose.

link|improve this answer
1  
JAI as Dan suggested is probably your best option if it is practical, JAI is not always available and depending on your deployment requirements/runtime constraints you may not be able to rely on it. – vickirk Nov 25 '09 at 17:10
feedback

You could add an parameter onto your image reader if you don't need to do anything with the high-res image, e.g.

ImageReadParam param = reader.getDefaultReadParam();
param.setSourceSubsampling(4, 4, 0, 0);
img = reader.read(0);

This will skip 3 out of 4 rows/column in the source data.

link|improve this answer
feedback

If you're running on a Linux server with the imagemagick binaries installed, you could just do an Runtime.getRuntime.exec() on /usr/bin/convert. Just make sure you read/write to unique names (you can use File.createTempFile() to ensure that).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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