2016-03-11 52 views
1

layout从彩色png布局图像读取阵列中的图案?

#FFFFFF = 0 = black background 
#FF0000 = 1 = corner, rotated through 0° https://i.imgur.com/8H5PL63.png 
#FF8000 = 2 = corner, rotated through 90° 
#FFFF00 = 3 = corner, rotated through 180° 
#80FF00 = 4 = corner, rotated through 270° 
#00FF00 = 5 = pipe, rotated through 0° https://i.imgur.com/UA2z1QZ.png 
#00FF80 = 6 = pipe, rotated through 90° 

所以我想读的图像,并自动填写我的int[][] layout阵列0-6。完整的图像是896(w) x 992(h),每个瓦片是32x32 pixels大。

每个瓷砖都有1px的边框,所以颜色是30x30 pixels大。
enter image description here

这是我的Java代码,到现在为止(只有Grid.class):

public class Grid { 
private static int[][] layout; 

public Grid() { 
    layout = new int[][]{ //28x31 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},//5 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},//10 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},//15 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},//20 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},//25 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},//30 
      {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} 
    }; 
} 

}

+1

你可以也将数组初始化为'layout = new int [28] [31];'没有多少0,确切的问题是什么? – skandigraun

回答

2

这里是解决方案一步一步:

  1. 研究以下commands

    javax.imageio.ImageIO.read(new File("filename.png")); java.awt.image.BufferedImage.getRGB(int x, int y);

  2. 加载并读取该图片。最好的办法是从每个第16个像素获得一个颜色(具有32x32的图块 - 从瓦片中间读取是安全的)。

  3. 比较一个颜色是否与你的模式匹配。
  4. 如果匹配,写入您的layout[i][j]阵列。
  5. 重复此循环,直到您到达图像的末端。 (不要忘了i++;j++;在一个周期的结束。
  6. 你有一个结果,只是通过28x31阵列循环是868个业务,所以不用担心速度。
+0

这太好了!我搜索了这个'getRGB(int x,int y )'!!谢谢:) – 8m47x

+1

[看看我的结果:]](https://i.imgur.com/G54x8bi.png) – 8m47x

+0

哇啊,好男人!!! ;)) –