ぬりえアプリを開発しようとしています。空白のキャンバスから始めたいのですが、ユーザーがタッチを使用して色を付けると、色付きの画像のタッチされた領域のみが表示されます。どうすればこれを達成できますか? どんな助けも私にとって大きな助けになります。
質問する
285 次
1 に答える
0
これはあなたがキックスタートするのに役立つかもしれません
UITouch *touch = [touches anyObject];
CGPoint currentPoint = [touch locationInView:drawImage];
UIGraphicsBeginImageContext(drawImage.frame.size);
[drawImage.image drawInRect:CGRectMake(0, 0, drawImage.frame.size.width, drawImage.frame.size.height)];
CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
CGContextSetLineWidth(UIGraphicsGetCurrentContext(), size);
CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), r, g, b, a);
CGContextBeginPath(UIGraphicsGetCurrentContext());
CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentPoint.x, currentPoint.y);
CGContextStrokePath(UIGraphicsGetCurrentContext());
drawImage.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
私はそれを試していませんが、SOの質問で見つけましたが、あなたが求めているものに対してうまく機能しています
于 2012-04-14T07:58:03.380 に答える