]> granicus.if.org Git - postgis/commitdiff
Remove dropshadow from WKT examples
authorPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 12 Oct 2018 21:24:45 +0000 (21:24 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 12 Oct 2018 21:24:45 +0000 (21:24 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@16891 b70326c6-7e19-0410-871a-916f4a2858ee

doc/html/image_src/generator.c

index a596bab2412fd6f069a46a576ef7e9024903086a..9c98465ec3d30f0b21188a1828b19706402425af 100644 (file)
@@ -225,11 +225,9 @@ drawGeometry(char *output, LWGEOM *lwgeom, LAYERSTYLE *styles )
  * shadow to the current layer image.
  *
  * @param layerNumber the current working layer number.
- */
 static void
 addDropShadow(int layerNumber)
 {
-       // TODO: change to properly sized string
        char str[512];
        sprintf(
            str,
@@ -238,6 +236,7 @@ addDropShadow(int layerNumber)
        LWDEBUGF(4, "%s", str);
        checked_system(str);
 }
+ */
 
 /**
  * Invokes a system call to ImageMagick's "convert" command that adds a
@@ -398,7 +397,7 @@ int main( int argc, const char* argv[] )
                checked_system(output);
 
                addHighlight( layerCount );
-               addDropShadow( layerCount );
+               // addDropShadow( layerCount );
                layerCount++;
                free(styleName);
        }