tags:

views:

31

answers:

1

Refereing to my previous question,

http://stackoverflow.com/questions/2682364/how-to-stich-to-image-objects-in-java

I successfully stiched two java.awt.Image objects, now I need to stich multiple objects of the same type. Is there any API or library available for that

A: 

You want to stitch multiple images together into one larger image? Sum up all the width / heights of the tiles, create a new BufferedIage, get the graphics object from it, and do g.drawImage(tile1, xOffset, yOffset), g.drawImage(tile2, xOffset2, yOffset2), and so on.

aioobe