From 425116762bb167de8d1d391228fcac5e5dfa19ad Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 6 Mar 2005 20:20:27 +0000 Subject: [PATCH] fixed Type0C handling. --- pdf2swf/SWFOutputDev.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pdf2swf/SWFOutputDev.cc b/pdf2swf/SWFOutputDev.cc index ad47eac..f92e95c 100644 --- a/pdf2swf/SWFOutputDev.cc +++ b/pdf2swf/SWFOutputDev.cc @@ -1279,8 +1279,7 @@ char*SWFOutputDev::writeEmbeddedFontToFile(XRef*ref, GfxFont*font) msg(" Collection: %s", c.getCString()); }*/ - if (font->getType() == fontType1C || - font->getType() == fontCIDType0C) { + if (font->getType() == fontType1C) { if (!(fontBuf = font->readEmbFontFile(xref, &fontLen))) { fclose(f); msg(" Couldn't read embedded font file"); -- 1.7.10.4