don't try to load a Type3 font.
authorkramm <kramm>
Fri, 20 Aug 2004 16:44:07 +0000 (16:44 +0000)
committerkramm <kramm>
Fri, 20 Aug 2004 16:44:07 +0000 (16:44 +0000)
pdf2swf/SWFOutputDev.cc

index d0c7002..50a7016 100644 (file)
@@ -1175,9 +1175,12 @@ void SWFOutputDev::updateFont(GfxState *state)
     }
 
     // look for Type 3 font
-    if (!type3Warning && gfxFont->getType() == fontType3) {
-       type3Warning = gTrue;
-       showFontError(gfxFont, 2);
+    if (gfxFont->getType() == fontType3) {
+       if(!type3Warning) {
+           type3Warning = gTrue;
+           showFontError(gfxFont, 2);
+       }
+       return;
     }
 
     /* now either load the font, or find a substitution */