1

我有缓冲图像的一维字节数组。我想将它转换为二维字节数组,因为我已经编写了如下代码

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,显示了异常。

现在我该怎么办?

如何将一维图像阵列转换为二维图像阵列?

或者任何人都知道如何将图像转换为二维数组?

4

1 回答 1

2

而不是使用ByteArrayOutputStreamuse DataBufferByte,它将起作用。

DataBufferByte db = (DataBufferByte)image.getRaster().getDataBuffer();

            byte[] pixelarray = db.getData();

然后应用逻辑将一维数组转换为二维数组

这提供了正确的图像大小并避免异常。

于 2013-09-03T08:05:38.490 回答