0

开始了解核心图形。我正在绘制一条带有填充和笔划的路径,但我无法对其进行剪辑。谁能告诉我我在这里做错了什么?

这段代码在我的 UIView 子类的 drawRect 方法中。

//Draw a closed path with rounded corners, a fill and a stroke.
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 4.0);
CGContextSetStrokeColorWithColor(context,[UIColor blueColor].CGColor);
CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor);
//fill
CGContextMoveToPoint(context, 10, 10);
CGContextAddLineToPoint(context, 10, 100);
CGContextAddArcToPoint(context, 10,140, 30,140, 20);
CGContextAddLineToPoint(context, 200, 140);
CGContextAddArcToPoint(context, 240,140, 240,100, 20);
CGContextAddLineToPoint(context, 240, 10);
CGContextClosePath(context);
CGContextFillPath(context);
//stroke
CGContextMoveToPoint(context, 10, 10);
CGContextAddLineToPoint(context, 10, 100);
CGContextAddArcToPoint(context, 10,140, 30,140, 20);
CGContextAddLineToPoint(context, 200, 140);
CGContextAddArcToPoint(context, 240,140, 240,100, 20);
CGContextAddLineToPoint(context, 240, 10);
CGContextClosePath(context);
CGContextStrokePath(context);
CGContextBeginPath(context);
//clip??
CGContextMoveToPoint(context, 10, 10);
CGContextAddLineToPoint(context, 10, 100);
CGContextAddArcToPoint(context, 10,140, 30,140, 20);
CGContextAddLineToPoint(context, 200, 140);
CGContextAddArcToPoint(context, 240,140, 240,100, 20);
CGContextAddLineToPoint(context, 240, 10);
CGContextClosePath(context);
CGContextClip(context);
4

2 回答 2

1

你应该在做应该剪裁的图纸之前剪裁上下文,然后在之后恢复上下文

于 2012-07-10T07:06:59.920 回答
0

您应该使用 CGContextClipbeforeCGContextStrokePath和 after CGContextClosePath。够了。无需编写额外的代码。像这样尝试如下..

    CGContextClosePath(context);
    CGContextClip(context);
    CGContextStrokePath(context);

我想这会对你有所帮助。

于 2012-07-10T07:31:24.957 回答