70

我看到很多人都遇到了类似的问题,但是我还没有尝试找到我正在寻找的东西。

所以,我有一个读取输入图像并将其转换为字节数组的方法:

    File imgPath = new File(ImageName);
    BufferedImage bufferedImage = ImageIO.read(imgPath);
    WritableRaster raster = bufferedImage .getRaster();
    DataBufferByte data   = (DataBufferByte) raster.getDataBuffer();

我现在要做的是将它转换回 BufferedImage(我有一个需要此功能的应用程序)。请注意,“test”是字节数组。

    BufferedImage img = ImageIO.read(new ByteArrayInputStream(test));
    File outputfile = new File("src/image.jpg");
    ImageIO.write(img,"jpg",outputfile);

但是,这会返回以下异常:

    Exception in thread "main" java.lang.IllegalArgumentException: im == null!

这是因为 BufferedImage img 为空。我认为这与以下事实有关:在我从 BufferedImage 到字节数组的原始转换中,信息被更改/丢失,因此数据不再被识别为 jpg。

有人对如何解决这个问题有任何建议吗?将不胜感激。

4

2 回答 2

117

建议转换为字节数组

ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(img, "jpg", baos);
byte[] bytes = baos.toByteArray();
于 2013-03-14T16:11:28.323 回答
12

请注意,调用closeorflush将什么都不做,您可以通过查看他们的源/文档来自己查看:

关闭 ByteArrayOutputStream 无效。

OutputStream 的 flush 方法什么都不做。

因此使用这样的东西:

ByteArrayOutputStream baos = new ByteArrayOutputStream(THINK_ABOUT_SIZE_HINT);
boolean foundWriter = ImageIO.write(bufferedImage, "jpg", baos);
assert foundWriter; // Not sure about this... with jpg it may work but other formats ?
byte[] bytes = baos.toByteArray();

以下是有关尺寸提示的一些链接:

当然,请务必阅读您正在使用的版本的源代码和文档,不要盲目依赖 SO 答案。

于 2014-02-28T10:49:03.260 回答