From: kramm Date: Mon, 11 Mar 2002 12:26:13 +0000 (+0000) Subject: fix the "cloud" bug. X-Git-Tag: xpdf-0-92~65 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=7b3ad2024d0c0d6a42f02cf49819304d0bac90b3 fix the "cloud" bug. --- diff --git a/pdf2swf/SWFOutputDev.cc b/pdf2swf/SWFOutputDev.cc index 1bcd271..fb697fe 100644 --- a/pdf2swf/SWFOutputDev.cc +++ b/pdf2swf/SWFOutputDev.cc @@ -602,6 +602,7 @@ void SWFOutputDev::startPage(int pageNum, GfxState *state) void SWFOutputDev::drawLink(Link *link, Catalog *catalog) { + logf(" drawlink\n"); double x1, y1, x2, y2, w; GfxRGB rgb; swfcoord points[5]; @@ -1371,6 +1372,7 @@ void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, GBool invert, GBool inlineImg) { + logf(" drawImageMask"); drawGeneralImage(state,ref,str,width,height,0,invert,inlineImg,1); } @@ -1378,6 +1380,7 @@ void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, GBool inlineImg) { + logf(" drawImage"); drawGeneralImage(state,ref,str,width,height,colorMap,0,inlineImg,0); }