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
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
Java Advanced Imaging API
http://java.sun.com/products/java-media/jai/forDevelopers/jaifaq.html
Java Advanced Imaging (here is an FAQ for it).
See also this article.
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.