On Dec 26, 2006, at 2:10 PM, Shipilov, Alexander D wrote:

Hi,

I'm interesting in default colors values in Graphics class. Let's take
a look on a simple code:
   Graphics2D g = new BufferedImage(10, 10,
BufferedImage.TYPE_INT_RGB).createGraphics();
   System.out.println("" + g.getBackground());
   System.out.println("" + g.getColor());
   System.out.println("" + g.getPaint());

 The results on RI and Harmony are opposed:
  RI:
   java.awt.Color[r=0,g=0,b=0]
   java.awt.Color[r=255,g=255,b=255]
   java.awt.Color[r=255,g=255,b=255]

  Harmony:
   java.awt.Color[r=255,g=255,b=255]
   java.awt.Color[r=0,g=0,b=0]
   java.awt.Color[r=0,g=0,b=0]

I didn't found in spec something about these default values. Should we
change our default values as in RI?

I would absolutely think so...

geir

Reply via email to