From b17a666343a07e1ba49e8039226ccb828d7fdc11 Mon Sep 17 00:00:00 2001 From: Adil Allawi Date: Tue, 5 Jul 2011 12:47:15 +0100 Subject: [PATCH] First pass CIDFont - stop CID fonts breaking PDF rendering --- pdf.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pdf.js b/pdf.js index c450b6ddd..9dddd8210 100644 --- a/pdf.js +++ b/pdf.js @@ -3626,9 +3626,17 @@ var PartialEvaluator = (function() { translateFont: function(fontDict, xref, resources) { var fd = fontDict.get('FontDescriptor'); if (!fd) - // XXX deprecated "special treatment" for standard - // fonts? What do we need to do here? - return null; + { + //If font is a composite get the FontDescriptor from the descendant + var df = fontDict.get("DescendantFonts"); + if (!df) + return null; + var descendant = xref.fetch(df[0]); + fd = descendant.get("FontDescriptor"); + if (!fd) + return null; + fontDict.set("FontDescriptor", fd); + } var descriptor = xref.fetch(fd); var fontName = descriptor.get('FontName'); @@ -3674,6 +3682,7 @@ var PartialEvaluator = (function() { } } else if (IsName(encoding)) { var encoding = Encodings[encoding.name]; + //XXX CIDFont support - get the CID Encoding especially support japan1 and identity if (!encoding) error('Unknown font encoding');