How can i using CoreGraphics to draw the line whit shadow in touchesMoved?
this is my drawing resault: http://www.de-rossi.info/imgtemp/Screen%20shot%202011-11-10%20at%2019.00.33.png
and i want it to be like this: http://www.de-rossi.info/imgtemp/Screen%20shot%202011-11-10%20at%2019.02.04.png
Following is my code:
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
CGPoint currentPoint = [touch locationInView:self.view];
currentPoint.y -= 0;
UIGraphicsBeginImageContext(self.view.frame.size);
[penDrawImage.image drawInRect:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
CGContextSetLineWidth(UIGraphicsGetCurrentContext(), textBold+5);
CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(),1.0, 1.0, 1.0, 1.0);
CGContextBeginPath(UIGraphicsGetCurrentContext());
CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentPoint.x, currentPoint.y);
CGContextSetLineJoin(UIGraphicsGetCurrentContext(), kCGLineJoinMiter);
CGContextSetShadowWithColor(UIGraphicsGetCurrentContext(), CGSizeMake(0.0f, 0.0f), 10.0f, [[UIColor redColor] CGColor]);
CGContextStrokePath(UIGraphicsGetCurrentContext());
penDrawImage.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}