-
Bug
-
Resolution: Won't Fix
-
P3
-
None
-
OpenJDK6
-
x86
-
linux_ubuntu
I am converting a buffered image from CS_sRGB color space to CS_CIEXYZ color space and then writing the color converted image in different formats using ImageIO. I am loading back the images written and showing it on a frame. JPEG ImageReader throws an exception when trying to read the image written by ImageWriter, when the input buffered image is one of the following types -
1. TYPE_INT_ARGB
2. TYPE_INT_ARGB_PRE
3. TYPE_4BYTE_ABGR
4. TYPE_4BYTE_ABGR_PRE
5. TYPE_BYTE_BINARY
6. TYPE_BYTE_INDEXED
Here is the exception:
javax.imageio.IIOException: Unsupported Image Type
at com.sun.imageio.plugins.jpeg.JPEGImageReader.readInternal(JPEGImageReader.java:1013)
at com.sun.imageio.plugins.jpeg.JPEGImageReader.read(JPEGImageReader.java:984)
at javax.imageio.ImageIO.read(ImageIO.java:1439)
at javax.imageio.ImageIO.read(ImageIO.java:1299)
at AutoColorConvertOpTest.doTest(AutoColorConvertOpTest.java:476)
at AutoColorConvertOpTest.<init>(AutoColorConvertOpTest.java:253)
at AutoColorConvertOpTest.main(AutoColorConvertOpTest.java:867)
This is thrown when writing/reading the image color converted from CS_sRGB to CS_CIEXYZ.
I reproduced it on Ubuntu 7.10 with openjdk-6.
I have attached the sample test and the image herewith.
1. TYPE_INT_ARGB
2. TYPE_INT_ARGB_PRE
3. TYPE_4BYTE_ABGR
4. TYPE_4BYTE_ABGR_PRE
5. TYPE_BYTE_BINARY
6. TYPE_BYTE_INDEXED
Here is the exception:
javax.imageio.IIOException: Unsupported Image Type
at com.sun.imageio.plugins.jpeg.JPEGImageReader.readInternal(JPEGImageReader.java:1013)
at com.sun.imageio.plugins.jpeg.JPEGImageReader.read(JPEGImageReader.java:984)
at javax.imageio.ImageIO.read(ImageIO.java:1439)
at javax.imageio.ImageIO.read(ImageIO.java:1299)
at AutoColorConvertOpTest.doTest(AutoColorConvertOpTest.java:476)
at AutoColorConvertOpTest.<init>(AutoColorConvertOpTest.java:253)
at AutoColorConvertOpTest.main(AutoColorConvertOpTest.java:867)
This is thrown when writing/reading the image color converted from CS_sRGB to CS_CIEXYZ.
I reproduced it on Ubuntu 7.10 with openjdk-6.
I have attached the sample test and the image herewith.