[mapserver-commits] r7299 - branches/branch-5-0/mapserver

svn at osgeo.org svn at osgeo.org
Wed Jan 23 10:14:10 EST 2008


Author: Assefa
Date: 2008-01-23 10:14:10 -0500 (Wed, 23 Jan 2008)
New Revision: 7299

Modified:
   branches/branch-5-0/mapserver/HISTORY.TXT
   branches/branch-5-0/mapserver/mappdf.c
Log:
Set linecaps to round to fix disjoint lines (#2344)

Modified: branches/branch-5-0/mapserver/HISTORY.TXT
===================================================================
--- branches/branch-5-0/mapserver/HISTORY.TXT	2008-01-23 14:33:20 UTC (rev 7298)
+++ branches/branch-5-0/mapserver/HISTORY.TXT	2008-01-23 15:14:10 UTC (rev 7299)
@@ -13,6 +13,8 @@
 Current Version (SVN branch-5-0)
 --------------------------------
 
+- PDF: Set linecaps to round to fix disjoint lines. 
+
 - PHP/Mapscript: on a shape object union_geos function should be called union
   (#2466)
 

Modified: branches/branch-5-0/mapserver/mappdf.c
===================================================================
--- branches/branch-5-0/mapserver/mappdf.c	2008-01-23 14:33:20 UTC (rev 7298)
+++ branches/branch-5-0/mapserver/mappdf.c	2008-01-23 15:14:10 UTC (rev 7299)
@@ -242,6 +242,7 @@
     if (width)
     {
         PDF_setlinejoin(pdf,1);
+         PDF_setlinecap(pdf,1); 
         PDF_setlinewidth(pdf,(float)width);
     }
 



More information about the mapserver-commits mailing list