我正在读取.jpg文件作为整数数组(源)并尝试从相同数据生成新图像,但代码生成黑色图像。但它应该生成重复的图像作为源。
String srcName = "input.jpg";
File srcFile = new File(srcName);
BufferedImage image = ImageIO.read(srcFile);
System.out.println("Source image: " + srcName);
int w = image.getWidth();
int h = image.getHeight();
int[] src = image.getRGB(0, 0, w, h, null, 0, w);
System.out.println("Array size is " + src.length);
BufferedImage dstImage = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
// generating destination image with same source array
dstImage.setRGB(0, 0, w, h, src, 0, w);
String dstName = "output.jpg";
File dstFile = new File(dstName);
ImageIO.write(dstImage, "jpg", dstFile);
System.out.println("Output image: " + dstName);
答案 0 :(得分:1)
您需要为两个图像使用相同的颜色编码类型。
输入图像很可能未编码为BufferedImage.TYPE_INT_ARGB
。
这修复了我的测试图片,其类型为BufferedImage.TYPE_3BYTE_BGR
:
BufferedImage dstImage = new BufferedImage(w, h, image.getType());
但是,我不希望新写入的图像与输入完全相同。我非常希望ImageIO在将图像数据编码为jpg时引入一些工件。