views:

42

answers:

5

I'm looking to do a couple basic features with images and Java...

image resizing and cropping possibly making composite images

What java library would be the easiest to use for that purpose?

thanks

A: 

1
2

org.life.java
There is no shame in adding some kind of description to a link :)
extraneon
+2  A: 

Java Advanced Imaging API

http://java.sun.com/products/java-media/jai/forDevelopers/jaifaq.html

Lou Franco
from what i've google'd around it seems the resizing quality is very poor with JAI.
A: 

Java Advanced Imaging (here is an FAQ for it).

See also this article.

DJClayworth
A: 

Apache also has an implementation which aims to be a more portable than other frameworks (and is slower). See the sanselan page.

extraneon
A: 

Have a look at the standard Java 2D graphics API first; it can do all the things you mention (resizing, cropping, compositing) without the need for exernal libraries such as Java Advanced Imaging.

See 2D Graphics in The Java Tutorials for an introduction.

Jesper