[java] Tiles in an array?

Started by
2 comments, last by Bravolino 22 years, 4 months ago
Hi everyone. I was wondering how i assign a tile (lets say a bitmap image or a jpeg image) into an array in Java. Could someone post the code with a short explanation? thanx. Mike p.s. i know how to initialize and setup an array, i just dun know how to assign a pic into an array.
Advertisement
Image [] tileArray = new Image[50];
tileArray[0] = getImage("filename");
...

//later
g.paintImage(tileArray[0],0,0,null);
Thanx, but is Image a file type included with Java? or is it from an API? thank ya.
Sort of, it is an AWT image, you can define them by declaring

import java.awt.Image;

at the begining of your class where you state all of your imports.

The AWT package comes with all of the standard JDK''s so you can use it and not have to worry about compatability issues with newer java platforms.

War doesn''t determine who is right, war determines who is left.

This topic is closed to new replies.

Advertisement