我正在写一个PNG图像,每个像素的值为15。当我阅读书面图像时,不是15,而是垃圾值。为什么会这样呢?
由于我想恢复相同的值,因此我选择了无损的PNG格式。仍然我得到了垃圾值。
这是代码。
public static void main(String args[])
{
BufferedImage img = new BufferedImage(512, 512, BufferedImage.TYPE_INT_RGB);
int[] RGBarray = null;
int col = 0;
int row = 0;
col = img.getWidth();
row = img.getHeight();
RGBarray = img.getRGB(0,0,col,row,null,0,col); // Now RGBarray has all the values
byte[] data = new byte[512*512];
for(int k = 0; k < 262144; k++)
{
data[k] = 15;
}
int count = 0;
for(int ro = 0; ro < 512 ; ro++)
{
for(int co = 0;co < 512; co++)
{
img.setRGB(co, ro, data[count++]);
}
}
try{
ImageIO.write(img, "png", new File("Test3.png"));
}
catch(Exception e)
{
e.printStackTrace();
}
BufferedImage img1 = null;
File f = new File("Test3.png");
try
{
img1 = ImageIO.read(f);
}
catch(Exception e)
{
e.printStackTrace();
}
int[] RGBarray1 = null;
int col1 = 0;
int row1 = 0;
col1 = img1.getWidth();
row1 = img1.getHeight();
RGBarray1 = img1.getRGB(0,0,col1,row1,null,0,col1); // Now RGBarray has all the values
for( int p = 0; p < 5; p++)
{
for(int j = 0; j < 5 ; j++)
{
System.out.print(img1.getRGB(p,j) + "\t");
}
System.out.println("");
}
}
仅供参考,我在值上打印了五个,以检查是否会得出15。但是输出是
-16777216 -16777216 -16777216 -16777216 -16777216
-16777216 -16777216 -16777216 -16777216 -16777216
-16777216 -16777216 -16777216 -16777216 -16777216
-16777216 -16777216 -16777216 -16777216 -16777216
-16777216 -16777216 -16777216 -16777216 -16777216
最佳答案
您正在编写byte
并阅读int
。尝试这个 -
System.out.print((byte)img1.getRGB(p,j) + "\t");