Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6406177

REGRESSION: Graphics2D drawText often does not draw String completely

XMLWordPrintable

    • 2d
    • b31
    • 6
    • b81
    • x86
    • windows_xp

      A DESCRIPTION OF THE REGRESSION :
      When using graphics2D.fill operations and drawString operations one after the other sometimes the string is not draw or drawn only partially (either not drawn at all or seemingly obscured by some pixels that have *previously* been painted in call to fill).


      REPRODUCIBLE TESTCASE OR STEPS TO REPRODUCE:
      /*
      Compile this class and run it on a Windows XP box. Toggle the sun.java2d.noddraw switch and you will see that
      this only happens with ddraw rendering turned on (which is the default).
      My PC is a "vanilla" Dell Dimension 5000 with an ATI X300 series graphics adapter, ATI driver version 6.14.10.6476
      Notice that the text "text" flickers heavily and sometimes is not painted at all. You might have to resize the Frame in order to see the effect. Also, you can play with the hardcoded constants (the random number seed or the loop count). On my PC the effect is visibly immediately using the settings below. I can provide screenshots.
      */

      import javax.swing.JComponent;
      import javax.swing.JFrame;
      import javax.swing.Timer;
      import java.awt.Color;
      import java.awt.Graphics;
      import java.awt.Graphics2D;
      import java.awt.event.ActionEvent;
      import java.awt.event.ActionListener;
      import java.awt.event.MouseAdapter;
      import java.awt.event.MouseEvent;
      import java.awt.geom.Rectangle2D;
      import java.util.Random;

      public class TextRepaintBug extends JComponent {

        public TextRepaintBug() {
          addMouseListener(new MouseAdapter() {
            @Override
            public void mouseClicked(MouseEvent e) {
              Random r = new Random();
              repaint(r.nextInt(10), r.nextInt(10), r.nextInt(300), r.nextInt(300));
            }
          });

          new Timer(100, new ActionListener() {
            public void actionPerformed(ActionEvent e) {
              repaint();
            }
          }).start();
        }

        @Override
        protected void paintComponent(Graphics g) {
          if (g instanceof Graphics2D) {
            Graphics2D g2d = (Graphics2D) g;
            Random r = new Random(100);
            for (int i = 0; i < 5; i++) {
              g2d.setColor(new Color(r.nextFloat(), r.nextFloat(), 1.0f));
              g2d.fill(new Rectangle2D.Double(r.nextDouble() * 50, r.nextDouble() * 50,r.nextDouble()*50 + 100,r.nextDouble()*50 + 100));
              g2d.setColor(Color.black);
              g2d.drawString("text", (float)(r.nextDouble()*50 + 50), (float) (r.nextDouble()*50 + 80));
            }
          }
        }

        public static void main(String[] args) {
          JFrame frame = new JFrame();
          frame.setContentPane(new TextRepaintBug());
          frame.setSize(300, 300);
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setVisible(true);
        }
      }


      RELEASE LAST WORKED:
      5.0

      RELEASE TEST FAILS:
      mustang-beta

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      The drawString operation should draw its String always in a deterministic way.
      ACTUAL -
      Sometimes (on a repaint, e.g.) the String is not drawn, sometimes it is drawn only partially.

      OBSERVED APPLICATION IMPACT:
      Graphics intensive applications that use Graphics2D drawString method look broken because sometimes text is not rendered at all, sometimes it is rendered only partially.

            tdv Dmitri Trembovetski (Inactive)
            ttzhang Tao Zhang
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: