-
Bug
-
Resolution: Fixed
-
P4
-
8u25
-
b19
-
x86
-
os_x
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8067131 | 9 | Alexandr Scherbatiy | P4 | Resolved | Fixed | b45 |
JDK-8084079 | emb-9 | Alexandr Scherbatiy | P4 | Resolved | Fixed | team |
JDK-8068112 | 8u45 | Alexandr Scherbatiy | P4 | Resolved | Fixed | b02 |
JDK-8069977 | emb-8u47 | Alexandr Scherbatiy | P4 | Resolved | Fixed | team |
FULL PRODUCT VERSION :
java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b17)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
OS X 10.9.5
EXTRA RELEVANT SYSTEM CONFIGURATION :
Using Quartz Debug simulation of HiDPI display
A DESCRIPTION OF THE PROBLEM :
An animated GIF that displays and animates on a non-HiDPI displays fails to display at all on a HiDPI display.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Just run the simplest possible test program.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Too see the image.
ACTUAL -
No image is seen.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
package test;
import javax.swing.*;
import java.awt.*;
import java.net.URL;
public class Main
extends JFrame
{
public Main()
{
URL u = Main.class.getResource("WhiteOnBlack.gif");
Image im = Toolkit.getDefaultToolkit().getImage(u);
ImageIcon ic = new ImageIcon(im);
JLabel label = new JLabel(ic);
add(label);
pack();
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Main();
}
});
}
}
---------- END SOURCE ----------
java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b17)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
OS X 10.9.5
EXTRA RELEVANT SYSTEM CONFIGURATION :
Using Quartz Debug simulation of HiDPI display
A DESCRIPTION OF THE PROBLEM :
An animated GIF that displays and animates on a non-HiDPI displays fails to display at all on a HiDPI display.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Just run the simplest possible test program.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Too see the image.
ACTUAL -
No image is seen.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
package test;
import javax.swing.*;
import java.awt.*;
import java.net.URL;
public class Main
extends JFrame
{
public Main()
{
URL u = Main.class.getResource("WhiteOnBlack.gif");
Image im = Toolkit.getDefaultToolkit().getImage(u);
ImageIcon ic = new ImageIcon(im);
JLabel label = new JLabel(ic);
add(label);
pack();
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Main();
}
});
}
}
---------- END SOURCE ----------
- backported by
-
JDK-8067131 Animated GIFs fail to display on a HiDPI display
-
- Resolved
-
-
JDK-8068112 Animated GIFs fail to display on a HiDPI display
-
- Resolved
-
-
JDK-8069977 Animated GIFs fail to display on a HiDPI display
-
- Resolved
-
-
JDK-8084079 Animated GIFs fail to display on a HiDPI display
-
- Resolved
-