iphone - 清晰的上下文图形

标签 iphone ios core-graphics

我正在尝试清除图形上下文。用这2种方式就可以完美清除。

 1. clearContextBeforeDrawing

 2. CGContextClearRect(context, rect);       
CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);       
CGContextFillRect(context, rect);                                                                          
CGContextFlush(context);

但是当我再次画线时。先前的行与新行混合在一起,并出现点。有人可以帮忙吗? Image With previous drawn lines

这就是我清除线路的方式

-(IBAction)eraseButton:(id)sender
{
    self.viewmainHandwriting.isErase = TRUE;
    [self.viewmainHandwriting setBackgroundColor:[UIColor clearColor]];
    [self.viewmainHandwriting setNeedsDisplay]; //It calls my drawRect Function

}

- (void)drawRect:(CGRect)rect
{
    CGContextRef context = UIGraphicsGetCurrentContext();

    if (!self.isErase)
    {

        CGContextAddPath(context, path);
        CGContextSetLineCap(context, kCGLineCapRound);
        CGContextSetLineWidth(context, self.lineWidth);
        CGContextSetStrokeColorWithColor(context, self.lineColor.CGColor);

        CGContextStrokePath(context);

        self.empty = NO;
    }

    else
    {
       CGContextClearRect(context, self.bounds);
       path
       self.isErase = FALSE;

    }

}

这就是我画线的方式

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [touches anyObject];

    previousPoint1 = [touch previousLocationInView:self];
    previousPoint2 = [touch previousLocationInView:self];
    currentPoint = [touch locationInView:self];

    [self touchesMoved:touches withEvent:event];
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [touches anyObject];

    CGPoint point = [touch locationInView:self];

    /* check if the point is farther than min dist from previous */
    CGFloat dx = point.x - currentPoint.x;
    CGFloat dy = point.y - currentPoint.y;

    if ((dx * dx + dy * dy) < kPointMinDistanceSquared) {
        return;
    }


    previousPoint2 = previousPoint1;
    previousPoint1 = [touch previousLocationInView:self];
    currentPoint = [touch locationInView:self];

    CGPoint mid1 = midPoint(previousPoint1, previousPoint2);
    CGPoint mid2 = midPoint(currentPoint, previousPoint1);
    CGMutablePathRef subpath = CGPathCreateMutable();
    CGPathMoveToPoint(subpath, NULL, mid1.x, mid1.y);
    CGPathAddQuadCurveToPoint(subpath, NULL, previousPoint1.x, previousPoint1.y, mid2.x, mid2.y);
    CGRect bounds = CGPathGetBoundingBox(subpath);

    CGPathAddPath(path, NULL, subpath);
    CGPathRelease(subpath);

    CGRect drawBox = bounds;
    drawBox.origin.x -= self.lineWidth * 2.0;
    drawBox.origin.y -= self.lineWidth * 2.0;
    drawBox.size.width += self.lineWidth * 4.0;
    drawBox.size.height += self.lineWidth * 4.0;

    [self setNeedsDisplayInRect:drawBox];
}

最佳答案

看起来您没有在清除整个 View 的方法中清除path(eraseButton?)。

因此路径仍将包含整个旧绘图。只有那些您调用 setNeedsDisplayInRect: 的部分才会显示(从 touchesMoved: 中)。您可以通过再次绘制旧图来显示旧图。

您应该通过在eraseButton中创建一个新路径来清除path(可能是ivar):

CGPathRelease(path);
path = CGPathCreateMutable();

关于iphone - 清晰的上下文图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18460815/

相关文章:

ios - IOS中的日期时间转换

ios - 计时器在真正的 iPhone 上不工作

iOS ARKit - 计算设备在所有三个方向上的旋转度数

objective-c - 裁剪 CAShapeLayer 检索外部路径

iphone - 什么是 “weak framework reference” ?

iphone - 核心数据的独特值(value)

iphone - iPhone 应用程序中的 JsonParser

iphone - 写入钥匙串(keychain)失败

ios - 一个项目可以使用哪种图形框架?

iphone - 有没有办法快速修改图像中的单个颜色值?