From: caryclark@google.com Date: Fri, 2 Mar 2012 20:39:53 +0000 (+0000) Subject: Check to see if font is TrueType before making TrueType specific calls. X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~16734 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8ccfb0fbadfdcadcc860bc648c5ac42aa9277b1;p=platform%2Fupstream%2FlibSkiaSharp.git Check to see if font is TrueType before making TrueType specific calls. See chromium bug 116185 Review URL: https://codereview.appspot.com/5731046 git-svn-id: http://skia.googlecode.com/svn/trunk@3309 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/src/ports/SkFontHost_mac_coretext.cpp b/src/ports/SkFontHost_mac_coretext.cpp index d39db2a..c5ac27e 100644 --- a/src/ports/SkFontHost_mac_coretext.cpp +++ b/src/ports/SkFontHost_mac_coretext.cpp @@ -1635,10 +1635,24 @@ SkAdvancedTypefaceMetrics* SkFontHost::GetAdvancedTypefaceMetrics( populate_glyph_to_unicode(ctFont, glyphCount, &info->fGlyphToUnicode); } - // TODO: get font type, ala: - // CFTypeRef attr = CTFontCopyAttribute(ctFont, kCTFontFormatAttribute); - info->fType = SkAdvancedTypefaceMetrics::kTrueType_Font; info->fStyle = 0; + + // If it's not a truetype font, mark it as 'other'. Assume that TrueType + // fonts always have glyf tables. CTFontCopyAttribute() does not always + // succeed in determining this directly. + if (!GetTableSize(fontID, 'glyf')) { + info->fType = SkAdvancedTypefaceMetrics::kOther_Font; + info->fItalicAngle = 0; + info->fAscent = 0; + info->fDescent = 0; + info->fStemV = 0; + info->fCapHeight = 0; + info->fBBox = SkIRect::MakeEmpty(); + CFSafeRelease(ctFont); + return info; + } + + info->fType = SkAdvancedTypefaceMetrics::kTrueType_Font; CTFontSymbolicTraits symbolicTraits = CTFontGetSymbolicTraits(ctFont); if (symbolicTraits & kCTFontMonoSpaceTrait) { info->fStyle |= SkAdvancedTypefaceMetrics::kFixedPitch_Style;