打印 PPM 文件 - 空格错误

Printing a PPM file - Wrong spaces

我需要打印 ppm 图片,但输出没有按应有的方式组织,我的代码:

public static int[][][] read(String filename) {
        StdIn.setInput(filename);
        StdIn.readLine();
        int imgW = StdIn.readInt ();
        int imgH = StdIn.readInt ();
        int[][][] data = new int[imgH][imgW][3];
        for (int i = 0; i < data.length; i++) {
            for (int j = 0; j < data[i].length; j++) {
                for (int k = 0; k < data[i][j].length; k++) {
                    data[i][j][k] = StdIn.readInt();
                }
            }
        }
        return data;
    }

我的输出:

255 0 0 0 100 0 0 0 0 0 255 0
255 0 0 0 0 255 175 0 0 0 0 0
0 0 0 0 0 0 0 0 15 175 0 0
0 255 0 255 0 0 0 0 0 0 255 255
正确的输出:(基本上和矩阵一样)

    0   0    0   100    0    0  0   0   0  255     0   255
    0   0    0     0  255  175  0   0   0    0     0     0
    0   0    0     0    0    0  0  15 175    0     0     0
  255   0  255     0    0    0  0   0   0  255   255   255

Ppm文件还列出了文件中出现的最大值,也就是你输出开头的255。

你应该添加一个额外的 StdIn.readInt();在循环之前。