Sorry, this is a bit of code, but there's not much to cut out here. This is supposed to read an image(a sprite-sheet of the alphabet) and cut it into smaller subImages that are each individual letter. When a key is pressed, the corresponding letter goes on the screen, but this part is just for creating the actual sub-image.
http://i.imgur.com/4I4uX.png (the image)
package typeandscreen;
(where the imports should be, i just cut them out to save space)
public class Font{
final int width = 78; //gives the dimensions of the image
final int height = 32;
final int rows = 4;
final int cols = 13;
BufferedImage letters[] = new BufferedImage[rows*cols]; //makes the array of
//subimages. rows*cols is
//the number of subimages
void test(){
try{
final BufferedImage totalImage = ImageIO.read(new File("ABCabcs.png"));
//loads the big image itself
This following part is what confuses me. What is i and j for, and why is it adding and multiplying them? This part is for finding out how big the subimages have to be, right? Shouldn't it just be 4 by 13, which is rows*cols?
for(int i = 0; i < rows; i++){
for(int j = 0; j < cols; j++){
letters[(i * cols) + j] = totalImage.getSubimage(
j * width,
j * height,
width,
height
);
}
}
} catch(IOException e){
e.printStackTrace();
}
}
}
I don't get what the i and j are doing. What am I missing here?