]> granicus.if.org Git - graphviz/commitdiff
use transparent margins when visible
authorellson <devnull@localhost>
Mon, 30 Jul 2007 17:59:40 +0000 (17:59 +0000)
committerellson <devnull@localhost>
Mon, 30 Jul 2007 17:59:40 +0000 (17:59 +0000)
plugin/gd/gvrender_gd.c

index 46afbebed613e697f6f783f11b3fdd15f641b58e..2a888ed01cbcd1789b2db003b3698397c6c9703c 100644 (file)
@@ -70,7 +70,6 @@ static void gdgen_begin_page(GVJ_t * job)
     char *bgcolor_str = NULL, *truecolor_str = NULL;
     boolean truecolor_p = FALSE;       /* try to use cheaper paletted mode */
     boolean bg_transparent_p = FALSE;
-    int bgcolor = 0;
     gdImagePtr im = NULL;
 
 
@@ -116,39 +115,17 @@ static void gdgen_begin_page(GVJ_t * job)
        return;
     }
 
-    white = gdImageColorResolveAlpha(im,
-                                    gdRedMax, gdGreenMax, gdBlueMax,
-                                    gdAlphaOpaque);
-    black = gdImageColorResolveAlpha(im, 0, 0, 0, gdAlphaOpaque);
+    /* first color is the default background color */
     transparent = gdImageColorResolveAlpha(im,
                                           gdRedMax - 1, gdGreenMax,
                                           gdBlueMax, gdAlphaTransparent);
     gdImageColorTransparent(im, transparent);
 
-    if (bgcolor_str && bgcolor_str[0])
-       if (bg_transparent_p) {
-           bgcolor = transparent;
-       } else {
-#if 0
-/* FIXME - colorxlation only available to gvrender.c ... */
-           bgcolor = gd_resolve_color(bgcolor_str);
-#endif
-    } else {
-       bgcolor = white;
-    }
-
-#if 0
-/* FIXME - ??? */
-    cstk[0].fillcolor = bgcolor;
-#endif
+    white = gdImageColorResolveAlpha(im,
+                                    gdRedMax, gdGreenMax, gdBlueMax,
+                                    gdAlphaOpaque);
 
-    /* Blending must be off to lay a transparent basecolor.
-       Nothing to blend with anyway. */
-    gdImageAlphaBlending(im, FALSE);
-    gdImageFill(im, im->sx / 2, im->sy / 2, bgcolor);
-    /* Blend everything else together,
-       especially fonts over non-transparent backgrounds */
-    gdImageAlphaBlending(im, TRUE);
+    black = gdImageColorResolveAlpha(im, 0, 0, 0, gdAlphaOpaque);
 }
 
 static void gdgen_end_page(GVJ_t * job)