0

我在 ray wenderlich 的网站上关注这个关于使用 UIKit 创建一个简单的绘图应用程序的精彩教程。 http://www.raywenderlich.com/18840/how-to-make-a-simple-drawing-app-with-uikit

该教程很棒,一切正常。我遇到的问题是,在创建橡皮擦功能时,ray 提出的解决方案是使用与背景颜色相同的画笔。对我来说,这似乎不是一个很好的解决方案。如果背景不是像渐变那样的纯色或像许多涂色书应用程序中那样的任何图像怎么办?

所以基本上问题是:有没有办法从给定位置的 UIImageView 中删除颜色(可能将该区域中的所有像素转换为透明)?

任何帮助或指示将不胜感激。谢谢

4

3 回答 3

1

使用画笔但颜色使用:

[UIColor clearColor]
于 2013-04-02T20:05:52.037 回答
1

经过长时间的搜索后,我在我的应用程序中遇到了同样的问题,我找到了解决这个问题的简单方法。

我只是使用了触摸方法UIViewController

以下是我的方法,

代码:-

   #pragma mark touches stuff...



 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
        UITouch *touch = [touches anyObject];
        lastTouch = [touch locationInView:self.editedImageView];
    }

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

        CGFloat brushSize;
        if (isEraser) 
        {
            brushSize=eraser;
        }
        else
        {
            brushSize=mark;
        }
        CGColorRef strokeColor = [UIColor whiteColor].CGColor;

        UIGraphicsBeginImageContext(self.editedImageView.frame.size);
        CGContextRef context = UIGraphicsGetCurrentContext();
        [self.editedImageView.image drawInRect:CGRectMake(0, 0, self.editedImageView.frame.size.width, self.editedImageView.frame.size.height)];
        CGContextSetLineCap(context, kCGLineCapRound);
        CGContextSetLineWidth(context, brushSize);
        if (isEraser) {

            CGContextSetStrokeColorWithColor(UIGraphicsGetCurrentContext(), [UIColor colorWithPatternImage:self.im].CGColor);
        }  
        else
        {
            CGContextSetStrokeColorWithColor(context, strokeColor);
            CGContextSetBlendMode(context, kCGBlendModeClear); 
        }
        CGContextBeginPath(context);
        CGContextMoveToPoint(context, lastTouch.x, lastTouch.y);
        CGContextAddLineToPoint(context, currentTouch.x, currentTouch.y);
        CGContextStrokePath(context);
        self.editedImageView.image = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

        lastTouch = [touch locationInView:self.editedImageView];
    }

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

    }

输入:

self.editedImageView.image = "Your Custom image";

self.im    =   "Your Custom image";

您的问题的简单解决方案是:-

CGContextSetStrokeColorWithColor(UIGraphicsGetCurrentContext(), [UIColor colorWithPatternImage:self.im].CGColor);

笔记:

这不会取消它再次绘制图像

更新:-

 self.im    =   "Your Custom image";

这将是这样的......

-(void)eraserConfigure
{
    UIImageView *resizeImage=[[[UIImageView alloc]initWithImage:editedImage]autorelease];
    /*UIImage */self.im=[UIImage imageFromView:resizeImage scaledToSize:CGSizeMake(self.editedImageView.frame.size.width, self.editedImageView.frame.size.height)];
}
于 2013-04-03T05:43:24.623 回答
1

我可以使用以下代码解决问题:

CGContextSetBlendMode(UIGraphicsGetCurrentContext(),kCGBlendModeClear);

参考

于 2013-08-13T17:19:22.633 回答