Hey, DW. I really need to know how to combine two images, into one image, but I don't want to draw it to the screen, and I don't want to save it to a file. It should look something like this
Image img1 = new ImageIcon("C:\\flying.png").getImage();
Image img2 = new ImageIcon("C:\\foo.png").getImage();
Image combined = img1 + im2;
Thanks so much you guys :)