从路径创建蒙版

时间:2011-06-07 01:34:53

标签: iphone image core-graphics mask

不是CoreGraphics专家,我真的很感激一些帮助。

我正在尝试从路径创建一个掩码。 (参见图片中的红色路径)。Skitch.jpg

而不是红色路径,我希望路径成为下面图像的掩码。

真的可以用手了。提前致谢

    - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    mouseSwiped = YES;

    UITouch *touch = [touches anyObject];   
    CGPoint currentPoint = [touch locationInView:self.view];
    currentPoint.y -= 20;


    UIGraphicsBeginImageContext(self.view.frame.size);
    [drawImage.image drawInRect:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];

    CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
    CGContextSetLineWidth(UIGraphicsGetCurrentContext(), 20.0);
    CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), 1.0, 0.0, 0.0, 1.0);
    CGContextBeginPath(UIGraphicsGetCurrentContext());
    CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentPoint.x, currentPoint.y);
    CGContextStrokePath(UIGraphicsGetCurrentContext());


    drawImage.image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    lastPoint = currentPoint;

    mouseMoved++;

    if (mouseMoved == 10) {
        mouseMoved = 0;
    }

}

2 个答案:

答案 0 :(得分:0)

创建路径后,使用CGContextReplacePathWithStrokedPath将其转换为可以填充的路径,以获得与抚摸路径相同的结果。然后,您可以使用CGContextClip将剪贴蒙版设置为此路径。

答案 1 :(得分:0)

我想出的解决方案是:

  • 在屏幕上显示UIView图像。
  • 使用[UIColor clearColor]背景颜色创建UIImageView图像
  • 使用CoreGraphics用颜色填充UIImageView
  • 保存UIImageView,然后在TouchesMoved或UIPanGestureRecognizer中,在设置kCGContentBlendClear后绘制savedImage,Stroke Path,保存图像并重复。