-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
beta2
-
x86
-
windows_2000
ingrid.yao@Eng 2001-06-14
J2SE Version (please include all output from java -version flag):
1.4.0-beta_refresh-b66
Does this problem occur on J2SE 1.3? Yes / No (pick one)
No.
Operating System Configuration Information (be specific):
Windows 2000 (can be reproduced on Solaris/Sparc)
Hardware Configuration Information (be specific):
Pentium III 650MHz / 256MB RAM / Rage 128 (with 8MB VRAM)
Bug Description:
Dotted rectangle is drawn biased by 1x1 dot from the correct position.
Steps to Reproduce (be specific):
Try the following program. It sets clip region and draws rectangles.
Just solid box is drawn ok. But dotted box is drawn somewhat odd.
It seems that the rectangle itself is moved in left upper direction
by 1x1 dot. I've tested a few case. But it seems that it's related
to dotted stroke. Other factors are not affecting drawing of boxes.
import java.awt.*;
public class Test extends Frame {
private static final Stroke OUTLINE
= new BasicStroke(1.0f, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER,
10.0f, new float[] {2.5f, 3.5f}, 0.0f);
public static void main(String[] argv) {
Test t = new Test();
t.setBounds(100, 100, 500, 500);
t.show();
}
public void paint(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
/* Normal solid line. */
g.setClip(100, 100, 100, 100);
g.drawRect(100, 100, 99, 99);
/* Dotted line. */
g.setClip(300, 100, 100, 100);
g2d.setStroke(OUTLINE);
g.drawRect(300, 100, 99, 99);
}
}
- relates to
-
JDK-8217263 Automate DashOffset test
-
- Resolved
-