有没有办法获取包含真实下代的UIFont的所有字形?似乎使用CTLineGetTypographicBounds并不准确,并且对于每条线都返回完全相同的下降值。我以为它将提供我需要的信息,但是没有。因此,现在我想看看是否可以从包含真正后代的字形中构建字符集,除非有其他方法。最终目标将能够查看一行文字是否低于基线。
let line = CTLineCreateWithAttributedString(NSAttributedString(string: s, attributes: attr))
//let's get the real descent test
var a : CGFloat = 0
var d : CGFloat = 0
var l : CGFloat = 0
let bounds = CTLineGetTypographicBounds(line, &a, &d, &l)
print("the descent is \(d)")
print("the ascent is \(a)")
print("the leading is \(l)")
答案 0 :(得分:1)
由于您的实际目标似乎是确定字符串是否包含带有降序的字符,因此可以使用“核心文本”查看每个字形的边界矩形。如果边界矩形的原点为负,则表示字形从基线以下开始。对于y
以及,
这样的字符都是如此。
func checkDescender(string: String) {
let uiFont = UIFont.systemFont(ofSize: 14) // Pick your font
let font = CTFontCreateWithName(uiFont.fontName as CFString, uiFont.pointSize, nil)
for ch in string.unicodeScalars {
let utf16codepoints = Array(ch.utf16)
var glyphs: [CGGlyph] = [0, 0]
let hasGlyph = CTFontGetGlyphsForCharacters(font, utf16codepoints, &glyphs, utf16codepoints.count)
if hasGlyph {
let rect = CTFontGetBoundingRectsForGlyphs(font, .default, glyphs, nil, 1)
// print("\(ch) has bounding box of \(rect)")
if rect.origin.y < 0 {
print("\(ch) goes below the baseline by \(-rect.origin.y)")
}
}
}
}
checkDescender(string: "Ymy,")
您可能需要添加其他支票,以便仅根据需要查看字母。