[Bug 197] New: Java2D: Dash array does not work in java.awt.BasicStroke

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Thu Sep 25 09:09:54 PDT 2008


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=197

           Summary: Java2D: Dash array does not work in java.awt.BasicStroke
           Product: IcedTea
           Version: unspecified
          Platform: PC
               URL: https://pivot.dev.java.net/nonav/tutorials/demo.standalo
                    ne.html
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: IcedTea
        AssignedTo: unassigned at icedtea.classpath.org
        ReportedBy: tvolkert at gmail.com


When painting a dashed line using Java2D, you get incorrect results in Iced Tea
vs J2SE.  See attached screenshots.  Here's some sample code to reproduce the
error:

!{{{
BasicStroke dashStroke = new BasicStroke(1.0f, BasicStroke.CAP_ROUND,
    BasicStroke.JOIN_ROUND, 1.0f, new float[] {0.0f, 2.0f}, 0.0f);

graphics.setStroke(dashStroke);
graphics.setColor(Color.BLACK);

graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);

graphics.drawRect(5, 5, 10, 10);
}}}


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the distro-pkg-dev mailing list