From 7b3ad2024d0c0d6a42f02cf49819304d0bac90b3 Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 11 Mar 2002 12:26:13 +0000 Subject: [PATCH] fix the "cloud" bug. --- pdf2swf/SWFOutputDev.cc | 3 +++ 1 file changed, 3 insertions(+) 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); } -- 1.7.10.4