我看到很多人都遇到了类似的问题,但是我还没有尝试找到我正在寻找的东西。
所以,我有一个读取输入图像并将其转换为字节数组的方法:
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。
有没有人对如何解决这个问题有任何建议?非常感谢。
答案 0 :(得分:72)
建议将其转换为字节数组
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(img, "jpg", baos);
byte[] bytes = baos.toByteArray();
答案 1 :(得分:6)
请注意,调用close
或flush
将不会执行任何操作,您可以通过查看其来源/文档来自行查看:
关闭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();
以下是一些关于尺寸提示的链接: