Combining Image's

I would like to combine several small Image objects into a larger Image object that could be displayed using graphic.drawImage(~~~~~);What should I use to do this?
[184 byte] By [kaze0] at [2007-9-26 2:56:26]
# 1

The simpliest way is to use the same technique you yourself described.

Make a new Image

Get the Graphics property of the Image

Draw the smaller images onto the Image using imagesGraphics.drawImage(...)

You now have a large image consisting of all your smaller ones

Then just draw the large Image to the screen using graphics.drawImage(...)

JDunlop at 2007-6-29 10:47:32 > top of Java-index,Archived Forums,Java Programming...
# 2
Just figured it out but I'll give ya duke points anyway since so they dont go to waste.
kaze0 at 2007-6-29 10:47:32 > top of Java-index,Archived Forums,Java Programming...