2015-02-02 5 views
2

물건을 강조 표시하기 위해 선 등을 그릴 수있는 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)); 
    } 
} 
+1

이미 그린 선이 흐릿 해 집니까? 추가하고있는 새 줄이 흐릿하게 그려져 있습니까? 어떤 종류의 장치를 테스트하고 있습니까? 어쩌면 몇 가지 예제 이미지를 게시 할 수 있습니까? –

+0

UIGraphicsBeginImageContext 문서에서는 1의 배율 인수를 사용한다고 가정합니다. 망막 장치를 사용하는 경우 UIGraphicsBeginImageContextWithOptions를 사용하고 싶을 수도 있습니다. –

+0

고마워요.하지만 이것도 망막이 아닐 때가 있습니다. – Burf2000

답변

4

iOS7에 아이 패드 2 iOS8의 아이 패드 미니 레티 나에 테스트 이것은 내가 자기의 프레임 설정을 가지고하는 방법과 문제가 될 밝혀졌다. drawingView와 내부 이미지의 크기.

이미지는 1005 x 720 이고 drawingView는 1004.2 x 719.9이므로 반올림 문제가 있습니다. 새 줄을 그릴 때마다 줄이 바뀝니다.

+1

동일한 문제가 발생하면 하루를 절약 할 수있었습니다! – zevonja