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?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

It should be

 j * width,
 i * height,

And also width and height seem to be too big for the size of a single letter but they are used as such.

i goes through the rows of letters, j goes through the columns. To get coordinates of letter at position (j,i) you need to multiple j (index of column) by width (which is width of each letter) and i (index of row) by height (of a letter).

letters is the array of images which correspond to letters.

 letters[(i * cols) + j]

is the standard idiom for putting a rectangular matrix into 1-D array. See the picture:

  0 1 2
0 A B C
1 D E F

get stored in an array as

0 1 2 3 4 5
A B C D E F

so the index of F in this array will be 1 * 3 + 2 = 5 where i = 1, j = 2 and cols = 3 (because there are 3 columns)

link|improve this answer
Does that mean that 'rows' and 'cols' has to change every time you're looking for the index of a different letter? Since I have final int rows = 4; final int cols = 13; won't it always be "letters[(4 * 4) + 13]" because of the for loops that make j and i always equal cols and rows respectively? – GlassZee Jan 31 at 5:13
1  
rows and cols are the upper bounds of the loops. i and j change from 0 to rows/cols respectfully, so the (i * cols) + j expression will evaluate to different index of the letters array on each loop iteration. – MK. Jan 31 at 13:33
Okay, I was confused about how for loops worked. Thanks – GlassZee Jan 31 at 22:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.