views:

63

answers:

2

I am looking for a java library that can scale, crop images without losing much quality, convert between image formats (png<->jpg), etc.

There is a similar question already, but it was asked 1,5 years ago and I am hoping maybe there are any new inventions, as everything mentioned there looks outdated (and scary).

+1  A: 

I had good results with ImageMagick for typical work on gifs and jpgs.

Tony Ennis
Which java library did you use for it? There is a couple at least.
serg
I believe we installed the ImageMagick release and forked off ImageMagick commands using the command line, effectively. I believe we used Runtime.exec(). We didn't run an API at all.
Tony Ennis
+1  A: 

Take a look at the Java Advanced Imaging library.

Marcus Adams