Ограничивающий прямоугольник с использованием основного текста
Пожалуйста, поправьте меня, если я ошибаюсь.
Я попытался определить точный ограничивающий прямоугольник символа с помощью Core Text. Но высота, которую я получал, всегда была больше, чем фактическая высота нарисованного символа на экране. В этом случае фактическая высота составляет около 20, но функция просто дает мне 46, несмотря ни на что.
Может ли кто-нибудь пролить свет на это?
Благодарю.
Вот код
- (void)viewDidLoad{
[super viewDidLoad];
NSString *testString = @"A";
NSAttributedString *textString = [[NSAttributedString alloc] initWithString:testString attributes:@{
NSFontAttributeName: [UIFont fontWithName:@"Helvetica" size:40]
}];
NSTextStorage *textStorage = [[NSTextStorage alloc] initWithAttributedString:textString];
NSLayoutManager *textLayout = [[NSLayoutManager alloc] init];
// Add layout manager to text storage object
[textStorage addLayoutManager:textLayout];
// Create a text container
NSTextContainer *textContainer = [[NSTextContainer alloc] initWithSize:self.view.bounds.size];
// Add text container to text layout manager
[textLayout addTextContainer:textContainer];
NSRange range = NSMakeRange (0, testString.length);
CGRect boundingBox = [textLayout boundingRectForGlyphRange:range inTextContainer:textContainer];
//BoundingBox:{{5, 0}, {26.679688, 46}}
// Instantiate UITextView object using the text container
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(20,20,self.view.bounds.size.width-20,self.view.bounds.size.height-20)
textContainer:textContainer];
// Add text view to the main view of the view controler
[self.view addSubview:textView];
}
1 ответ
В настоящее время я работаю над этим для рендеринга основного текста и удивлен, что этот тип информации не предоставляется напрямую (для связанной графики, такой как встроенные фоны / контуры)
Обе они находятся в процессе разработки из других вопросов о стековом потоке и моего собственного тестирования, чтобы получить идеальные ограничивающие рамки
Общие свойства шрифта
let leading = floor( CTFontGetLeading(fontCT) + 0.5)
let ascent = floor( CTFontGetAscent(fontCT) + 0.5)
let descent = floor( CTFontGetDescent(fontCT) + 0.5)
var lineHeight = ascent + descent + leading
var ascenderDelta = CGFloat(0)
if leading > 0 {
ascenderDelta = 0
}
else {
ascenderDelta = floor( 0.2 * lineHeight + 0.5 )
}
lineHeight = lineHeight + ascenderDelta
Для стилей абзаца
var para = NSMutableAttributedString()
// append attributed strings and set NSMutableParagraphStyle
/* ... */
let options : NSStringDrawingOptions = .UsesFontLeading | .UsesLineFragmentOrigin | .UsesDeviceMetrics
let rect = para.boundingRectWithSize(CGSizeMake(fontBoxWidth,10000), options: options, context: nil)
var backgroundBounds = CGRectMake(boundingBox.origin.x + point.x, boundingBox.origin.y + point.y + lineHeight, boundingBox.width, boundingBox.height + ascenderDelta)
Для CTFrames
let lines = CTFrameGetLines(frame) as NSArray
let numLines = CFArrayGetCount(lines)
for var index = 0; index < numLines; index++ {
var ascent = CGFloat(0),
descent = CGFloat(0),
leading = CGFloat(0),
width = CGFloat(0)
let line = lines[index] as! CTLine
width = CGFloat(CTLineGetTypographicBounds(line, &ascent, &descent, &leading))
// adjust with common font property code
var lineOrigin : CGPoint = CGPointMake(0,0)
CTFrameGetLineOrigins(frame, CFRangeMake(index, 1), &lineOrigin)
let bounds = CGRectMake(point.x + lineOrigin.x, point.y + lineOrigin.y - descent, width, ascent + descent)