我有缓冲图像的一维字节数组。我想将它转换为二维字节数组,因为我已经编写了如下代码
File file = new File("/home/tushar/temp.jpg");
try {
input_bf = ImageIO.read(file);
width = input_bf.getWidth();
height = input_bf.getHeight();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
byte [][] image = new byte[width][height];
ByteArrayOutputStream bos = new ByteArrayOutputStream();
try {
ImageIO.write(input_bf, "jpg", bos );
bos.flush();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
byte[] imageInByte = bos.toByteArray();
try {
bos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//here is the main logic to convert 1D to 2D
int x=0;
for(int i=0;i<width;i++)
{
for(int j=0;j<height;j++)
{
image[i][j] = imageInByte[x];
x++;
}
}
但我得到了例外
java.lang.ArrayIndexOutOfBoundsException: 26029
at smoothing.main(smoothing.java:70)
一维数组的大小为 26029,显示了异常。
现在我该怎么办?
如何将一维图像阵列转换为二维图像阵列?
或者任何人都知道如何将图像转换为二维数组?