0

我已经尝试并搜索了很多,但没有找到解决方案。

我有这张图片作为.png [1]:http: //imm.io/1f3DY

如果用户在区域 1 中触摸 fe

我想用蓝色填充这个区域。

有没有办法在代码中找出/创建这些区域并用颜色填充它?

我已经将我的 .png 转换为 .svg 并创建了一些 bezierpathes。将贝塞尔路径存储在一个数组中并添加一个手势识别器。这工作正常。得到了我所触及的正确道路。可以改变路径的颜色。但只有黑线。我想填补 fe path1 和 path 2 之间的空间。我该怎么做?

       //The event handling method
- (void)handleSingleTap:(UITapGestureRecognizer *)recognizer {
    CGPoint location = [recognizer locationInView:[recognizer.view superview]];

    location.y = self.view.bounds.size.height - location.y;
    for(int i = 0; i< bezierPathes.count; i++)
    {
          //if([b containsPoint:location])

        UIBezierPath* b = bezierPathes[i];
        if([[self tapTargetForPath:b] containsPoint:location])
        {
            [[UIColor redColor] setFill];
            [b fill];
            [testView setNeedsDisplay];

        }

    }
}

// this method will let you easily select a bezier path ( 15 px up and down of a path drawing)
- (UIBezierPath *)tapTargetForPath:(UIBezierPath *)path
{
    if (path == nil) {
        return nil;
    }

    CGPathRef tapTargetPath = CGPathCreateCopyByStrokingPath(path.CGPath, NULL, fmaxf(35.0f, path.lineWidth), path.lineCapStyle, path.lineJoinStyle, path.miterLimit);
    if (tapTargetPath == NULL) {
        return nil;
    }

    UIBezierPath *tapTarget = [UIBezierPath bezierPathWithCGPath:tapTargetPath];
    CGPathRelease(tapTargetPath);
    return tapTarget;
}
4

1 回答 1

1

您也可以使用 Flood Fill 算法来执行此操作。

听到链接http://en.wikipedia.org/wiki/Flood_fill

于 2013-09-11T10:58:55.587 回答