[Bug 1013] Icedtea

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Tue May 29 08:44:45 PDT 2012


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1013

Xerxes Rånby <xerxes at zafena.se> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xerxes at zafena.se

--- Comment #4 from Xerxes Rånby <xerxes at zafena.se> ---
I wrote a quick testcase that do triggers a exception when run using IcedTea 7
2.1.1pre , running the same testcase using IcedTea 6 1.11.1 work fine.

The image Anonymous_.jpg (found inside the attachment) uses a grayscale
ICC_ProfileGray colorprofile.
This triggers an exception when the OpenJDK7 tries to extract RGB data from the
image.

xranby at xranby-ESPRIMO-P7935:~/Hämtningar/Prueba/src$ cat testcase.java 
public class testcase {
public static void main(String[] args) throws Exception{
  java.awt.image.BufferedImage image =
                 javax.imageio.ImageIO.read(new
java.io.File("Anonymous_.jpg"));
  System.out.println(image);
System.out.println(((java.awt.color.ICC_ColorSpace)image.getColorModel().getColorSpace()).getProfile());
}
}

Testcase fails using IcedTea 7 2.1.1pre:
xranby at xranby-ESPRIMO-P7935:~/Hämtningar/Prueba/src$
/usr/lib/jvm/java-7-openjdk-i386/bin/java -showversion testcase 
java version "1.7.0_03"
OpenJDK Runtime Environment (IcedTea7 2.1.1pre) (7~u3-2.1.1~pre1-1ubuntu2)
OpenJDK Server VM (build 22.0-b10, mixed mode)

Exception in thread "main" java.lang.IllegalArgumentException: Can't load
standard profile: sRGB.pf
    at java.awt.color.ICC_Profile$2.run(ICC_Profile.java:931)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.color.ICC_Profile.getStandardProfile(ICC_Profile.java:924)
    at java.awt.color.ICC_Profile.getDeferredInstance(ICC_Profile.java:1071)
    at java.awt.color.ICC_Profile.getInstance(ICC_Profile.java:843)
    at java.awt.color.ColorSpace.getInstance(ColorSpace.java:298)
    at java.awt.color.ICC_ColorSpace.fromRGB(ICC_ColorSpace.java:215)
    at
com.sun.imageio.plugins.jpeg.JPEGImageReader.setImageData(JPEGImageReader.java:635)
    at com.sun.imageio.plugins.jpeg.JPEGImageReader.readImageHeader(Native
Method)
    at
com.sun.imageio.plugins.jpeg.JPEGImageReader.readNativeHeader(JPEGImageReader.java:550)
    at
com.sun.imageio.plugins.jpeg.JPEGImageReader.checkTablesOnly(JPEGImageReader.java:295)
    at
com.sun.imageio.plugins.jpeg.JPEGImageReader.gotoImage(JPEGImageReader.java:427)
    at
com.sun.imageio.plugins.jpeg.JPEGImageReader.readHeader(JPEGImageReader.java:543)
    at
com.sun.imageio.plugins.jpeg.JPEGImageReader.readInternal(JPEGImageReader.java:986)
    at
com.sun.imageio.plugins.jpeg.JPEGImageReader.read(JPEGImageReader.java:966)
    at javax.imageio.ImageIO.read(ImageIO.java:1448)
    at javax.imageio.ImageIO.read(ImageIO.java:1308)
    at testcase.main(testcase.java:3)


Working testcase using IcedTea 6 1.11.1:
xranby at xranby-ESPRIMO-P7935:~/Hämtningar/Prueba/src$
/usr/lib/jvm/java-6-openjdk-i386/bin/java -showversion testcase 
java version "1.6.0_24"
OpenJDK Runtime Environment (IcedTea6 1.11.1) (6b24-1.11.1-4ubuntu3)
OpenJDK Server VM (build 20.0-b12, mixed mode)

BufferedImage at 6d084b: type = 10 ColorModel: #pixelBits = 8 numComponents = 1
color space = java.awt.color.ICC_ColorSpace at 3bb2b8 transparency = 1 has alpha =
false isAlphaPre = false ByteInterleavedRaster: width = 1920 height = 1200
#numDataElements 1 dataOff[0] = 0
java.awt.color.ICC_ProfileGray at 152544e

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20120529/c635b6dc/attachment.html 


More information about the distro-pkg-dev mailing list