如何只绘制文本的轮廓,而不是填充本身?

时间:2011-06-10 17:02:46

标签: iphone objective-c ios ipad core-graphics

我使用此方法在-drawRect中绘制文本:

[someText drawInRect:rect withFont:font lineBreakMode:someLineBreakMode alignment:someAlignment];

我只想绘制轮廓而不是填充!

我发现我可以设置CGContextSetFillColorWithColor并提供完全透明的颜色。但我担心这会对性能产生不良影响,因为它可能会在幕后以透明的颜色进行所有繁重的绘图工作。

如果只需要轮廓绘图,是否可以禁用填充绘图?

1 个答案:

答案 0 :(得分:3)

您是否尝试过使用kCGTextFillStroke?这可能很容易。要使用它,只需覆盖drawTextInRect

- (void)drawTextInRect:(CGRect)rect {

  CGSize shadowOffset = self.shadowOffset;
  UIColor *textColor = self.textColor;

  CGContextRef c = UIGraphicsGetCurrentContext();
  CGContextSetLineWidth(c, 1);
  CGContextSetLineJoin(c, kCGLineJoinRound);

  CGContextSetTextDrawingMode(c, kCGTextStroke);
  self.textColor = [UIColor whiteColor];
  [super drawTextInRect:rect];

  CGContextSetTextDrawingMode(c, kCGTextFill);
  self.textColor = textColor;
  self.shadowOffset = CGSizeMake(0, 0);
  [super drawTextInRect:rect];

  self.shadowOffset = shadowOffset;

}

编辑:此答案也出现在此问题的先前版本中:How do I make UILabel display outlined text?