iOS:在CGContext上绘图最终会模糊

时间:2015-02-02 16:49:49

标签: ios uiimageview cgcontext cgcontextdrawimage

我有一个应用程序显示一个文档,在其顶部有一个UIImage,您可以在其中绘制线条等以突出显示内容。

如果我继续绘制线条(触摸,绘制,抬起手指,并在屏幕的不同区域重复)

线条慢慢模糊。

这是我的触摸代码,我使用 kCGBlendModeCopy 进行blendmode,但使用了 kCGBlendModeNormal 。 DrawingView是一个UIImageView。

更新 这是我已经绘制的线条,它们越老越模糊,感觉每条添加的线条都会衰老。在iPad 2 ios8 iPad Mini Retina ios7上测试

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

    mouseSwiped = NO;

    if ( self.drawingEnabled )
    {
        UITouch *touch = [touches anyObject];
        lastPoint = [touch locationInView:self.drawingView];

        UIGraphicsBeginImageContext(self.drawingView.frame.size);
        [self.drawingView.image drawInRect:CGRectMake(0, 0, self.drawingView.frame.size.width, self.drawingView.frame.size.height) blendMode:kCGBlendModeCopy alpha:1.0];
    }
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

    if ( self.drawingEnabled )
    {
        mouseSwiped = YES;
        UITouch *touch = [touches anyObject];

        CGPoint currentPoint = [touch locationInView:self.drawingView];

        CGContextRef ctxt = UIGraphicsGetCurrentContext();
        CGContextMoveToPoint(ctxt, lastPoint.x, lastPoint.y);
        CGContextAddLineToPoint(ctxt, currentPoint.x, currentPoint.y);
        CGContextSetLineCap(ctxt, kCGLineCapRound);
        CGContextSetLineWidth(ctxt, self.brush );
        CGContextSetRGBStrokeColor(ctxt, self.redColour, self.greenColour, self.blueColour, OPACITY);

        if (self.eraserOn)
        {
            CGContextSetBlendMode(ctxt,kCGBlendModeClear);
        }
        else
        {
            CGContextSetBlendMode(ctxt,kCGBlendModeCopy);
        }

        CGContextStrokePath(ctxt);
        self.drawingView.image = UIGraphicsGetImageFromCurrentImageContext();

        lastPoint = currentPoint;
    }
}

- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{


    [super touchesCancelled:touches withEvent:event];

    UIGraphicsEndImageContext();

    if(!mouseSwiped)
    {
        //self.drawingView.image = nil;
    }
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {


    if ( self.drawingEnabled )
    {

        if(!mouseSwiped) {
            UIGraphicsEndImageContext();

            UIGraphicsBeginImageContext(self.drawingView.frame.size);
            [self.drawingView.image drawInRect:CGRectMake(0, 0, self.drawingView.frame.size.width, self.drawingView.frame.size.height)];
            CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
            CGContextSetLineWidth(UIGraphicsGetCurrentContext(), self.brush);
            CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), self.redColour, self.greenColour, self.blueColour, OPACITY);
            CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
            CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
            CGContextStrokePath(UIGraphicsGetCurrentContext());
            CGContextFlush(UIGraphicsGetCurrentContext());
            self.drawingView.image = UIGraphicsGetImageFromCurrentImageContext();
            UIGraphicsEndImageContext();
        }

        if (self.delegate)
        {
            [self.delegate drawingUpated];
        }

        //NSLog(@"%@  ---  %@", NSStringFromCGRect(self.frame) , NSStringFromCGRect(self.drawingView.frame) );
    }
}

1 个答案:

答案 0 :(得分:4)

这是我如何设置自我框架的问题。 drawingView和里面图像的大小。

图像是1005乘720 drawingView是1004.2乘719.9所以有一个舍入问题。每次我画一条新线,都会向下舍入。

相关问题