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
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:
For details see the documentation of Image