[Geoserver-devel] [jira] Created: (GEOS-2486) GraphicStroke rendering poor due to missing antialiasing and interpolation

GraphicStroke rendering poor due to missing antialiasing and interpolation
--------------------------------------------------------------------------

                 Key: GEOS-2486
                 URL: http://jira.codehaus.org/browse/GEOS-2486
             Project: GeoServer
          Issue Type: Bug
    Affects Versions: 1.7.1
            Reporter: Andrea Aime
            Assignee: Andrea Aime
             Fix For: 1.7.2

Using GraphicStroke shows many little artifacts due to missing antialiasing when painting the graphic elements. This is due to missing antialiaisng in the code that draws the mark and missing interpolation in the code that draws the image along the line (and that has to interpolate it properly to accomodate for the rotation).

{code}
<?xml version="1.0" encoding="ISO-8859-1"?>
<StyledLayerDescriptor version="1.0.0" xmlns="http://www.opengis.net/sld&quot; xmlns:ogc="http://www.opengis.net/ogc&quot;
  xmlns:xlink="http://www.w3.org/1999/xlink&quot; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot;
  xsi:schemaLocation="http://www.opengis.net/sld http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd&quot;&gt;
  <NamedLayer>
    <Name>Line</Name>
    <UserStyle>
      <FeatureTypeStyle>
        <Rule>
          <LineSymbolizer>
            <Stroke>
              <GraphicStroke>
                <Graphic>
                    <Mark>
                        <WellKnownName>circle</WellKnownName>
                        <Fill><CssParameter name="fill">#000000</CssParameter></Fill>
                    </Mark>
                    <Size>6</Size>
                </Graphic>
              </GraphicStroke>
            </Stroke>
          </LineSymbolizer>
        </Rule>

      </FeatureTypeStyle>
    </UserStyle>
  </NamedLayer>
</StyledLayerDescriptor>
{code}

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira