我正在尝试从 PNG 中提取字节并得到一些看起来很奇怪的结果。
这是我的提取字节方法:
public static byte[] extractBytes (String ImageName) throws IOException {
// open image
File imgPath = new File(ImageName);
BufferedImage bufferedImage = ImageIO.read(imgPath);
// get DataBufferBytes from Raster
WritableRaster raster = bufferedImage.getRaster();
DataBufferByte data = (DataBufferByte) raster.getDataBuffer();
return ( data.getData() );
}
这里是我调用函数并遍历生成的 byte[] 的地方:
byte[] bytes = extractBytes("colorstrip.png");
for (int x : bytes) {
System.out.println(x);
}
我一直在一个 4x1 图像上测试此代码,该图像按顺序包含一个红色像素、一个蓝色像素、一个绿色像素和一个紫色像素。这是输出:
-1
0
0
-1
-1
0
-1
0
-1
-1
0
0
-1
-1
0
-1
这个输出对我来说看起来不正确。我相信输出应该是这样的(我将 alpha 通道留空):
255
0
0
0
255
0
0
0
255
255
0
255
知道问题是什么吗?