Java:BufferedImage到字节数组并返回

2022-08-31 13:49:47

我看到很多人都有类似的问题,但是我还没有尝试找到我想要的确切内容。

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

    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 为 null。我认为这与以下事实有关:在我最初从BufferedImage到字节数组的转换中,信息被更改/丢失,因此数据不再被识别为jpg。

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


答案 1

建议将其转换为字节数组

ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(img, "jpg", baos);
byte[] bytes = baos.toByteArray();

答案 2

请注意,调用或将不执行任何操作,您可以通过查看其源/文档来亲眼看到这一点:closeflush

关闭 ByteArrayOutputStream 不起作用。

输出流的刷新方法不执行任何操作。

因此,请使用类似如下的内容:

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答案。