5

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).

Community
  • 1
  • 1
serg
  • 109,619
  • 77
  • 317
  • 330

2 Answers2

1

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

Tony Ennis
  • 12,000
  • 7
  • 52
  • 73
  • Which java library did you use for it? There is a couple at least. – serg Oct 12 '10 at 18:46
  • 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 Oct 12 '10 at 18:51
1

Take a look at the Java Advanced Imaging library.

Marcus Adams
  • 53,009
  • 9
  • 91
  • 143