I have an Image of say dimensions 800x800 which has a size of 170 kb. I want to resize this image to say 600x600. After resizing i want the image size to be reduced. How can i do this?
|
Use some good framework which supports Image Processing through Java e.g. IamageJ There is also some basic support available in Java through some classes such as MemoryImageSource and PixelGrabber. |
|||||
|
|
You don't need a full blown Image processing library for simply resizing an image. The recommended approach is by using progressive bilinear scaling, like so (feel free to use this method as is in your code):
Code modified and cleaned from the original at Filthy Rich Clients. Based on your comment, you can reduce quality and encode JPEG bytes like so:
Now, since
|
|||||||
|
|
You could use the 100% Java, Apache2 open source imgscalr library (a single static class) and do something like this:
NOTE: If the above looks odd, the static import allows me to use the resize call directly without specifying Scalr.resize(...) Additionally, if the quality of the scaled image written out doesn't look good enough (it will be written out quickly though) you can use more arguments to the resize method like so:
.. and you can even apply a BufferedImageOp to the result to soften it incase the downscaling makes the image look to jaggy:
You can start playing around with the library by just adding the following dep entry in your Maven POM (imgscalr is in the Maven central repo):
|
|||
|
|
ImageCompressionDemofor example source. – Andrew Thompson Oct 14 '12 at 7:01