我有缓冲图像的1D字节数组。我想将其转换为2D字节数组,因为我编写了如下代码
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)
1D数组的大小为26029,显示异常。
现在该怎么办?
如何将1D转换为2D图像阵列?
或任何人都知道如何将图像转换为2D数组?
答案 0 :(得分:2)
而不是使用ByteArrayOutputStream
使用DataBufferByte
,它将起作用。
DataBufferByte db = (DataBufferByte)image.getRaster().getDataBuffer();
byte[] pixelarray = db.getData();
然后应用逻辑将1D数组转换为2D数组
这样可以提供正确的图像尺寸并避免异常。