I want to detect the transparent part of the uiimageview. I am using this code to draw onto uiimageview. But i want to detect the transperent portion in uiimage and prevent filling the color into that portions.
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
// CGFloat red,green,blue,alpha;
UITouch *touch1 = [touches anyObject];
CGPoint currentPoint = [touch1 locationInView:Image_apple];
UIGraphicsBeginImageContext(Image_apple.frame.size);
[Image_apple.image drawInRect:CGRectMake(0, 0, Image_apple.frame.size.width, Image_apple.frame.size.height)];
CGContextSetBlendMode(UIGraphicsGetCurrentContext(), kCGBlendModeNormal);
// CGContextSetBlendMode(UIGraphicsGetCurrentContext(),[self getBlendMode]);
CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x , lastPoint.y );
CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentPoint.x , currentPoint.y );
CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
CGContextSetLineWidth(UIGraphicsGetCurrentContext(),8.0 );
// [[self getPaintColor] getRed:&red green:&green blue:&blue alpha:&alpha];
CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), 1, 0.5, 0.2, 1);
CGContextSetBlendMode(UIGraphicsGetCurrentContext(),kCGBlendModeNormal);
CGContextStrokePath(UIGraphicsGetCurrentContext());
Image_apple.image = UIGraphicsGetImageFromCurrentImageContext();
[Image_apple setAlpha:1];
UIGraphicsEndImageContext();
}
Thanks in advance
There's a blend mode that might help you:
kCGBlendModeDestinationOver
. It draws only on opaque portions of the context.If you have to use other blend modes, you could convert the image to a mask and clip the context to it.