From: kramm Date: Sun, 14 Oct 2007 21:02:41 +0000 (+0000) Subject: applied transparency patch X-Git-Tag: buttons-working~539 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=da69617ad9981b5ba86b6baeebf3701ec08e71f2 applied transparency patch --- diff --git a/lib/pdf/GFXOutputDev.cc b/lib/pdf/GFXOutputDev.cc index ed07c18..8b114ce 100644 --- a/lib/pdf/GFXOutputDev.cc +++ b/lib/pdf/GFXOutputDev.cc @@ -273,6 +273,7 @@ GFXOutputDev::GFXOutputDev(parameter_t*p) this->config_use_fontconfig=1; this->config_break_on_warning=0; this->config_remapunicode=0; + this->config_transparent=0; this->do_interpretType3Chars = gTrue; this->parameters = p; @@ -296,6 +297,8 @@ void GFXOutputDev::setParameter(const char*key, const char*value) this->config_use_fontconfig = atoi(value); } else if(!strcmp(key,"remapunicode")) { this->config_remapunicode = atoi(value); + } else if(!strcmp(p->name,"transparent")) { + this->config_transparent = atoi(p->value); } else { msg(" Ignored parameter: %s=%s", key, value); } @@ -1320,7 +1323,8 @@ void GFXOutputDev::startPage(int pageNum, GfxState *state, double crop_x1, doubl clippath[3].type = gfx_lineTo;clippath[3].x = x1; clippath[3].y = y2; clippath[3].next = &clippath[4]; clippath[4].type = gfx_lineTo;clippath[4].x = x1; clippath[4].y = y1; clippath[4].next = 0; device->startclip(device, clippath); outer_clip_box = 1; - device->fill(device, clippath, &white); + if(!config_transparent) + device->fill(device, clippath, &white); } diff --git a/lib/pdf/GFXOutputDev.h b/lib/pdf/GFXOutputDev.h index 8a8a1ca..90c173c 100644 --- a/lib/pdf/GFXOutputDev.h +++ b/lib/pdf/GFXOutputDev.h @@ -279,6 +279,7 @@ public: int config_use_fontconfig; int config_break_on_warning; int config_remapunicode; + int config_transparent; parameter_t*parameters; };