我有一个BufferedImage我正在尝试写一个jpeg文件,但是我的Java程序抛出异常。我能够成功地将相同的缓冲区保存到gif和png。我曾尝试在Google上寻找解决方案,但无济于事。
代码:
File outputfile = new File("tiles/" + row + ":" + col + ".jpg");
try {
ImageIO.write(mapBufferTiles[row][col], "jpg", outputfile);
} catch (IOException e) {
outputfile.delete();
throw new RuntimeException(e);
}
例外:
Exception in thread "main" java.lang.RuntimeException: javax.imageio.IIOException: Invalid argument to native writeImage
at MapServer.initMapBuffer(MapServer.java:90)
at MapServer.<init>(MapServer.java:24)
at MapServer.main(MapServer.java:118)
Caused by: javax.imageio.IIOException: Invalid argument to native writeImage
at com.sun.imageio.plugins.jpeg.JPEGImageWriter.writeImage(Native Method)
at com.sun.imageio.plugins.jpeg.JPEGImageWriter.writeOnThread(JPEGImageWriter.java:1055)
at com.sun.imageio.plugins.jpeg.JPEGImageWriter.write(JPEGImageWriter.java:357)
at javax.imageio.ImageWriter.write(ImageWriter.java:615)
at javax.imageio.ImageIO.doWrite(ImageIO.java:1602)
at javax.imageio.ImageIO.write(ImageIO.java:1526)
at MapServer.initMapBuffer(MapServer.java:87)
... 2 more
答案 0 :(得分:38)
OpenJDK没有原生JPEG编码器,尝试使用Sun的JDK或使用库(例如JAI
AFAIK,关于“粉红色调”,Java将JPEG保存为ARGB(仍然具有透明度信息)。大多数观众在打开时假设四个频道必须对应一个CMYK(不是ARGB),因而是红色。
如果将图像导回到Java,透明度仍然存在。
答案 1 :(得分:31)
我在OpenJDK 7中遇到了同样的问题,我使用同一个OpenJDK使用imageType
TYPE_3BYTE_BGR
代替TYPE_4BYTE_ABGR
来设法绕过此异常。
答案 2 :(得分:3)
2019年答案:确保您的BufferedImage没有alpha透明度。 JPEG不支持alpha,因此,如果您的图像包含alpha,则ImageIO无法将其写入JPEG。
使用以下代码来确保您的图像没有Alpha透明度:
static BufferedImage ensureOpaque(BufferedImage bi) {
if (bi.getTransparency() == BufferedImage.OPAQUE)
return bi;
int w = bi.getWidth();
int h = bi.getHeight();
int[] pixels = new int[w * h];
bi.getRGB(0, 0, w, h, pixels, 0, w);
BufferedImage bi2 = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
bi2.setRGB(0, 0, w, h, pixels, 0, w);
return bi2;
}
答案 3 :(得分:2)
下面是一些代码,用于说明@Thunder想法将图像类型更改为TYPE_3BYTE_BGR
try {
BufferedImage input = ImageIO.read(new File("input.png"));
System.out.println("input image type=" + input.getType());
int width = input.getWidth();
int height = input.getHeight();
BufferedImage output = new BufferedImage(width, height, BufferedImage.TYPE_3BYTE_BGR);
int px[] = new int[width * height];
input.getRGB(0, 0, width, height, px, 0, width);
output.setRGB(0, 0, width, height, px, 0, width);
ImageIO.write(output, "jpg", new File("output.jpg"));
} catch (Exception e) {
e.printStackTrace();
}
答案 4 :(得分:0)
你得到同样的错误
Caused by: javax.imageio.IIOException: Invalid argument to native writeImage
at com.sun.imageio.plugins.jpeg.JPEGImageWriter.writeImage(Native Method)
at com.sun.imageio.plugins.jpeg.JPEGImageWriter.writeOnThread(JPEGImageWriter.java:1055)
如果您使用的是不受支持的色彩空间(在我的情况下是CYMK)。请参阅How to convert from CMYK to RGB in Java correctly?如何解决此问题。