这是我在 CALayer 的委托中的 drawLayer 方法。
它只负责绘制string with length = 1
。
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx
{
CGRect boundingBox = CGContextGetClipBoundingBox(ctx);
NSAttributedString *string = [[NSAttributedString alloc] initWithString:self.letter attributes:[self attrs]];
CGContextSaveGState(ctx);
CGContextSetShadowWithColor(ctx, CGSizeZero, 3.0, CGColorCreateGenericRGB(1.0, 1.0, 0.922, 1.0));
CTLineRef line = CTLineCreateWithAttributedString((CFAttributedStringRef)string);
CGRect rect = CTLineGetImageBounds(line, ctx);
CGFloat xOffset = CGRectGetMidX(rect);
CGFloat yOffset = CGRectGetMidY(rect);
CGPoint pos = CGPointMake(CGRectGetMidX(boundingBox) - xOffset, CGRectGetMidY(boundingBox)- yOffset);
CGContextSetTextPosition(ctx, pos.x, pos.y);
CTLineDraw(line, ctx);
CGContextRestoreGState(ctx);
}
这是属性字典:
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:
[NSFont fontWithName:@"GillSans-Bold" size:72.0], NSFontAttributeName,
[NSColor blackColor], NSForegroundColorAttributeName,
[NSNumber numberWithFloat:1.0], NSStrokeWidthAttributeName,
[NSColor blackColor], NSStrokeColorAttributeName,
style, NSParagraphStyleAttributeName, nil];
按原样,笔划不会绘制,但填充会完成。
如果我在字典中注释掉笔划属性,则填充绘制。
我知道这不对,但我找不到任何关于这个问题的参考。
使用委托绘制文本时这是一个已知问题吗?
因为字符串是一个字符,所以我遵循doc示例不使用任何 framesetter 机制,但无论如何都尝试将其作为修复尝试而没有成功。
答案 0 :(得分:3)
在阅读this问题的答案时,我意识到我需要使用negative number
作为笔画值。我正在考虑将笔划应用于CTLineDraw
绘制的字母的外部,而不是文本形状内部。
我正在回答我自己的问题,如果这应该帮助其他任何有这种误解的人,因为我没有看到referenced doc覆盖这个。