[mapserver-commits] r7159 - trunk/mapserver
svn at osgeo.org
svn at osgeo.org
Mon Dec 10 02:35:58 EST 2007
Author: tbonfort
Date: 2007-12-10 02:35:48 -0500 (Mon, 10 Dec 2007)
New Revision: 7159
Modified:
trunk/mapserver/mapsvg.c
Log:
add space for svg dashed polygon (#2429)
Modified: trunk/mapserver/mapsvg.c
===================================================================
--- trunk/mapserver/mapsvg.c 2007-12-07 20:33:52 UTC (rev 7158)
+++ trunk/mapserver/mapsvg.c 2007-12-10 07:35:48 UTC (rev 7159)
@@ -640,7 +640,7 @@
psOutlineColor->red, psOutlineColor->green,
psOutlineColor->blue,
size, pszDashArray);*/
- msIO_fprintfgz(fp, bCompressed, "<path fill=\"#%02x%02x%02x\" stroke=\"#%02x%02x%02x\" stroke-width=\"%d\"%s d=\"",
+ msIO_fprintfgz(fp, bCompressed, "<path fill=\"#%02x%02x%02x\" stroke=\"#%02x%02x%02x\" stroke-width=\"%d\" %s d=\"",
psFillColor->red, psFillColor->green,
psFillColor->blue,
psOutlineColor->red, psOutlineColor->green,
@@ -653,7 +653,7 @@
psOutlineColor->red, psOutlineColor->green,
psOutlineColor->blue,
size, pszDashArray);*/
- msIO_fprintfgz(fp, bCompressed, "<path stroke=\"#%02x%02x%02x\" stroke-width=\"%d\"%s style=\"fill:none\" d=\"",
+ msIO_fprintfgz(fp, bCompressed, "<path stroke=\"#%02x%02x%02x\" stroke-width=\"%d\" %s style=\"fill:none\" d=\"",
psOutlineColor->red, psOutlineColor->green,
psOutlineColor->blue,
size, pszDashArray);
More information about the mapserver-commits
mailing list