という .bmp ファイルを読み込もうとしていますcircle1.bmp
。次のファイルにインポートしたパッケージにあります。
これまでのところ、次のコードがありますが、次のコードを実行すると次のようになります。
javax.imageio.llOException: 入力ファイルを読み込めません!
public void setUp() throws IOException
{
BufferedImage image = ImageIO.read(new File("circle1.bmp"));
byte[][] greenInputData = new byte[30][40];
for (int x = 0; x < inputData.length; x++)
{
for (int y = 0; y < inputData[x].length; y++)
{
int color = image.getRGB(x, y);
//alpha[x][y] = (byte)(color>>24);
//red[x][y] = (byte)(color>>16);
greenInputData[x][y] = (byte)(color>>8);
//blue[x][y] = (byte)(color);
}
}
this.inputData = greenInputData;
System.out.println(this.inputData);
}