-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.2
-
x86
-
windows_xp
Name: gm110360 Date: 04/20/2004
FULL PRODUCT VERSION :
java version "1.5.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b32c)
Java HotSpot(TM) Client VM (build 1.5.0-beta-b32c, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [Wersja 5.1.2600]
A DESCRIPTION OF THE PROBLEM :
No matter if the system property awt.image.incrementaldraw has the value true or false, the image is not drawn until it has been completely loaded.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
just try how it works :)
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
the image should be drawn incrementally
ACTUAL -
the image is not drawn until it has been completely loaded.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.*;
import javax.swing.*;
public class Example1 extends JComponent implements Runnable {
Image img;
public void paint(Graphics g) {
if (img != null) {
g.drawImage(img, 0, 0, this);
}
}
public void run() {
img = Toolkit.getDefaultToolkit().getImage("image.jpg");
repaint();
}
public static void main(String[] args) {
System.setProperty("awt.image.incrementaldraw", "true");
Example1 ex = new Example1();
JFrame frame = new JFrame();
frame.getContentPane().add(ex);
frame.setSize(800, 600);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
(new Thread(ex)).start();
}
}
---------- END SOURCE ----------
(Incident Review ID: 255008)
======================================================================
- duplicates
-
JDK-4098417 Component does not update image incrementally
-
- Open
-