views:

71

answers:

3

Here is the deal, in my Java project I have to make a composite document that combines both text and images; So I'm looking for a way to manipulate pictures (rotate, change size, that sort of thing). The API I'm looking for should be clear and easy to learn (preferably with some examples), it should cover the basic transformations I made above - rotate,change size, eventually crop.

+2  A: 

The java2d api let you do this kind of thing. Is it too difficult to learn?

Maurice Perry
No, it isn't. I'll see if there are any other answers. If not than this is the winner.
Daniel Fath
+1  A: 

the standard api allows for all your needs.
You can find exemples here.

regards
Guillaume

PATRY
Thanks for the examples :)
Daniel Fath
You're welcome. i find it simplier to learn by reading and extending examples. *Then* you can understand most of the docs :)
PATRY
+2  A: 

If you want some more advanced functionality, ImageJ is a create image library. It's open source and has plenty of examples.

Stew