[classlib][awt] Images with BGColor are not drawing
---------------------------------------------------
Key: HARMONY-4604
URL: https://issues.apache.org/jira/browse/HARMONY-4604
Project: Harmony
Issue Type: Bug
Components: Classlib
Environment: Windows
Reporter: Igor V. Stolyarov
Here is simple reproducer:
import java.awt.*;
import java.awt.image.BufferedImage;
import java.awt.event.*;
import javax.swing.JFrame;
public class Test {
public static void main(String[] args) {
final Font font = new Font("Dialog",Font.PLAIN, 12);
JFrame f = new JFrame("Test"){
public void paint(Graphics g){
Graphics2D g2d = (Graphics2D)g;
BufferedImage bi = new BufferedImage(200,200,BufferedImage.TYPE_INT_ARGB);
Graphics2D g2 = bi.createGraphics();
g2.setFont(font);
g2.setColor(Color.red);
g2.fillRect(50,50,100,100);
g2d.drawImage(bi,0,0, Color.blue, null);
}
};
f.setBounds(0, 0, 200, 200);
f.setVisible(true);
f.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent ev) {
System.exit(0);
}
});
}
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|