0

我这里有这个方法,它将图像转换为字节数组。

public byte[] imageToCompressedByteArray(Image image) throws IOException {
//load the image
String f = "C:\\Users\\mamed\\Documents\\NetBeansProjects\\Main\\src\\resources\\accept.png";
image = ImageIO.read(new FileInputStream(new File(f)));


// get image size
int width = image.getWidth(null);
int height = image.getHeight(null);


try {
  int[] imageSource = new int[width * height];
  PixelGrabber pg = new PixelGrabber(image, 0, 0, width, height, imageSource, 0, width);
  pg.grabPixels();


  ByteArrayOutputStream byteStream = new ByteArrayOutputStream(); 
  GZIPOutputStream zippedStream = new GZIPOutputStream(byteStream);
  ObjectOutputStream objectStream = new ObjectOutputStream(zippedStream);
  objectStream.writeShort(width);
  objectStream.writeShort(height);
  objectStream.writeObject(imageSource);
  objectStream.flush();
  objectStream.close();
  return byteStream.toByteArray();
}
catch (Exception e) {
  throw new IOException("Error storing image in object: " + e);
}

}

但是,我无法让它工作,我的意思是,它无法加载图像并对其进行转换,而且我不知道问题可能是什么。

4

2 回答 2

0

您确定图像路径正确并且加载的图像不是损坏的图像。

我没有修改你的代码,我可以看到 1778416 从图像文件中读取。

在此处输入图像描述

于 2013-08-14T08:10:37.370 回答
0

我看不出这个程序有什么问题。也许您的图像文件已损坏或图像路径不正确。

于 2013-08-14T08:10:57.403 回答