gpt4 book ai didi

java - 将字节数组转换为 bufferedimage 结果为 null

转载 作者:行者123 更新时间:2023-11-30 11:50:30 25 4
gpt4 key购买 nike

我正在尝试将长度为 128 的字节数组转换为存储在 BufferedImage 中的 32x32 位图。我正在使用以下代码:

private BufferedImage fSP;

public Pattern( byte[] aBitData ) {
if ( aBitData == null ) {
throw new IllegalArgumentException( "Please provide a non-null byte array of length 128: " + aBitData );
}
else if ( aBitData.length != 128 ) {
throw new IllegalArgumentException( "Please provide a non-null byte array of length 128: " + aBitData.length );
}
InputStream in = new ByteArrayInputStream( aBitData );
try {
fSP = ImageIO.read( in );
} catch( IOException e ) {
e.printStackTrace();
}
}

但是每次 fSP 都因为某种原因被设置为 null。我不明白为什么会这样。谁能帮帮我?

最佳答案

来自JavaDoc :

返回一个 BufferedImage 作为使用从当前注册的那些中自动选择的 ImageReader 解码提供的 InputStream 的结果。 InputStream 包装在 ImageInputStream 中。如果没有已注册的 ImageReader 声称能够读取结果流,则返回 null

看起来字节数组的内容无法解码为已知的图像格式。

关于java - 将字节数组转换为 bufferedimage 结果为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7952295/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com