X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpdf%2FGFXOutputDev.cc;h=df27a23e015af311953ee1453a9d1c5f2d00e656;hb=f53b3156fe0f6913b1ae20038041e66777291ad1;hp=52b92a5fec3d0082fbab9eb5c74db2d30ec03380;hpb=f0a09477923d23dbdd74d00209d0247ae09e7ec9;p=swftools.git diff --git a/lib/pdf/GFXOutputDev.cc b/lib/pdf/GFXOutputDev.cc index 52b92a5..df27a23 100644 --- a/lib/pdf/GFXOutputDev.cc +++ b/lib/pdf/GFXOutputDev.cc @@ -272,6 +272,8 @@ GFXOutputDev::GFXOutputDev(parameter_t*p) this->pagepos = 0; 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; @@ -293,8 +295,10 @@ void GFXOutputDev::setParameter(const char*key, const char*value) this->config_break_on_warning = atoi(value); } else if(!strcmp(key,"fontconfig")) { this->config_use_fontconfig = atoi(value); - } else { - msg(" Ignored parameter: %s=%s", key, value); + } else if(!strcmp(key,"remapunicode")) { + this->config_remapunicode = atoi(value); + } else if(!strcmp(key,"transparent")) { + this->config_transparent = atoi(value); } } @@ -723,8 +727,6 @@ void GFXOutputDev::strokeGfxline(GfxState *state, gfxline_t*line, int flags) if(dashnum && ldash) { float * dash = (float*)malloc(sizeof(float)*(dashnum+1)); int t; - double cut = 0; - int fixzero = 0; msg(" %d dashes", dashnum); msg(" | phase: %f", dashphase); for(t=0;t= LOGLEVEL_TRACE) { + dump_outline(gfxline); + } + if(!gfxline) { + msg(" Empty polygon (resulting from stroked line)"); + } if(flags&STROKE_CLIP) { device->startclip(device, gfxline); states[statepos].clipping++; @@ -835,6 +843,12 @@ void GFXOutputDev::clipToStrokePath(GfxState *state) { GfxPath * path = state->getPath(); gfxline_t*line= gfxPath_to_gfxline(state, path, 0, user_movex + clipmovex, user_movey + clipmovey); + + if(getLogLevel() >= LOGLEVEL_TRACE) { + msg(" cliptostrokepath\n"); + dump_outline(line); + } + strokeGfxline(state, line, STROKE_FILL|STROKE_CLIP); gfxline_free(line); } @@ -1029,6 +1043,13 @@ static gfxline_t* mkEmptyGfxShape(double x, double y) return line; } +static char isValidUnicode(int c) +{ + if(c>=32 && c<0x2fffe) + return 1; + return 0; +} + void GFXOutputDev::drawChar(GfxState *state, double x, double y, double dx, double dy, double originX, double originY, @@ -1107,6 +1128,10 @@ void GFXOutputDev::drawChar(GfxState *state, double x, double y, FIXNULL(name),c, u, FIXNULL((char*)current_gfxfont->id), current_gfxfont->num_glyphs); return; } + //useless- the font has already been passed to the output device + //if(!isValidUnicode(current_gfxfont->glyphs[charid].unicode) && isValidUnicode(u)) { + // current_gfxfont->glyphs[charid]. + //} gfxmatrix_t m = this->current_font_matrix; state->transform(x, y, &m.tx, &m.ty); @@ -1125,7 +1150,10 @@ void GFXOutputDev::drawChar(GfxState *state, double x, double y, l = l->next; } if(!ok) { - msg(" Drawing empty character charid=%d", charid); + static int lastemptychar = 0; + if(charid != lastemptychar) + msg(" Drawing empty character charid=%d u=%d", charid, u); + lastemptychar = charid; } } @@ -1303,7 +1331,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); } @@ -1919,7 +1948,7 @@ void GFXOutputDev::setXRef(PDFDoc*doc, XRef *xref) this->xref = xref; } -int GFXOutputDev::setGfxFont(char*id, char*name, char*filename, double maxSize) +int GFXOutputDev::setGfxFont(char*id, char*name, char*filename, double maxSize, CharCodeToUnicode*ctu) { gfxfont_t*font = 0; fontlist_t*last=0,*l = this->fontlist; @@ -1947,13 +1976,23 @@ int GFXOutputDev::setGfxFont(char*id, char*name, char*filename, double maxSize) double quality = (1024 * 0.05) / maxSize; msg(" Loading %s...", filename); - font = gfxfont_load(id, filename, quality); + font = gfxfont_load(id, filename, 0, quality); if(!font) { msg(" Couldn't load Font %s (%s)", filename, id); return 0; } msg(" Font %s (%s) loaded successfully", filename, id); + if(this->config_remapunicode && ctu) { + int c; + for(c=0;cnum_glyphs;c++) { + Unicode u[8]; + int uLen = ctu->mapToUnicode(c, u, 8); + if(uLen && !isValidUnicode(font->glyphs[c].unicode) && isValidUnicode(u[0])) + font->glyphs[c].unicode = u[0]; + } + } + l = new fontlist_t; l->font = font; l->filename = strdup(filename); @@ -1999,7 +2038,7 @@ void GFXOutputDev::updateFont(GfxState *state) /* second, see if this is a font which was used before- if so, we are done */ - if(setGfxFont(fontid, fontname, 0, 0)) { + if(setGfxFont(fontid, fontname, 0, 0, gfxFont->getCTU())) { free(fontid); free(fontname); return; @@ -2072,8 +2111,8 @@ void GFXOutputDev::updateFont(GfxState *state) //swfoutput_setfont(&device, fontid, fileName); - if(!setGfxFont(fontid, fontname, 0, 0)) { - setGfxFont(fontid, fontname, fileName, maxSize); + if(!setGfxFont(fontid, fontname, 0, 0, gfxFont->getCTU())) { + setGfxFont(fontid, fontname, fileName, maxSize, gfxFont->getCTU()); } if(fileName && del)