물건을 강조 표시하기 위해 선 등을 그릴 수있는 UIImage가있는 문서를 표시하는 앱이 있습니다. 내가 선을 그릴 유지하는 경우iOS : 결국 CGContext에서 그리기가 흐림
선은 천천히 블러 (터치, 손가락을 들어 올려, 그리기, 화면의 다른 영역에서 반복).
는 여기에 내가하는 BlendMode에 대한 kCGBlendModeCopy를 사용하고 있지만, kCGBlendModeNormal 사용하고, 내 터치 코드입니다. DrawingView는 UIImageView입니다.
UPDATE 그것은 내가 그릴 이미 한 선이다, 나이가 추가 된 각 라인은 기존의 것들을 붕괴처럼 그들이 그들은 더 흐리게 얻을, 그것은 느낌이있다.
- (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));
}
}
이미 그린 선이 흐릿 해 집니까? 추가하고있는 새 줄이 흐릿하게 그려져 있습니까? 어떤 종류의 장치를 테스트하고 있습니까? 어쩌면 몇 가지 예제 이미지를 게시 할 수 있습니까? –
UIGraphicsBeginImageContext 문서에서는 1의 배율 인수를 사용한다고 가정합니다. 망막 장치를 사용하는 경우 UIGraphicsBeginImageContextWithOptions를 사용하고 싶을 수도 있습니다. –
고마워요.하지만 이것도 망막이 아닐 때가 있습니다. – Burf2000