fixed invisible text bug
authorMatthias Kramm <kramm@quiss.org>
Fri, 13 Mar 2009 23:27:17 +0000 (00:27 +0100)
committerMatthias Kramm <kramm@quiss.org>
Fri, 13 Mar 2009 23:27:17 +0000 (00:27 +0100)
lib/pdf/GFXOutputDev.cc

index 46e9c26..73c94e2 100644 (file)
@@ -1363,7 +1363,7 @@ void GFXOutputDev::drawChar(GfxState *state, double x, double y,
 
     // check for invisible text -- this is used by Acrobat Capture
     if (render == RENDER_INVISIBLE) {
-       col.a = 255;
+       col.a = 0;
        if(!config_extrafontdata)
            return;
     }