1

写真をUIImageView表示しています。

拡大/縮小するピンチ ジェスチャと、その上に描画するパン ジェスチャを登録しました (touchMoved の代わりにパン ジェスチャを使用する正当な理由があります)。

ピンチターゲットは次のとおりです。

    - (void)pinchGestureActionOnSubject:(UIPinchGestureRecognizer *)pinch
    {

          if([(UIPinchGestureRecognizer*)pinch state] == UIGestureRecognizerStateBegan)
          {
                _lastScale = 1.0;
          }

          CGFloat scale = 1.0 - (_lastScale - [(UIPinchGestureRecognizer*)pinch scale]);

          CGAffineTransform currentTransform = self.imageViewSubject.transform;
          CGAffineTransform newTransform = CGAffineTransformScale(currentTransform, scale, scale);

          [self.imageViewSubject setTransform:newTransform];

          _lastScale = [(UIPinchGestureRecognizer*)pinch scale];
    }

パンターゲットは次のとおりです。

    -(void) panOnSubjectForDrawing:(id)sender
    {

         if([sender numberOfTouches] > 0)
         { 

              CGPoint currentPoint = [sender locationOfTouch:0 inView:self.imageViewSubject];

              if(lastPoint.x == 0 || lastPoint.y == 0)
              {
                  lastPoint.x = currentPoint.x;
                  lastPoint.y = currentPoint.y;    
              }

              UIGraphicsBeginImageContext(self.imageViewSubject.bounds.size);

              CGContextRef context = UIGraphicsGetCurrentContext();

              [self.imageViewSubject.image drawInRect:CGRectMake(0, 0, self.imageViewSubject.bounds.size.width, self.imageViewSubject.bounds.size.height)  blendMode:kCGBlendModeNormal alpha:1.0];

              CGContextSetLineCap(context, kCGLineCapRound);

              CGContextSetLineWidth(context, 10); // Epaisseur du trait

              CGContextSetBlendMode(UIGraphicsGetCurrentContext(), kCGBlendModeClear); // Transparent

              CGContextMoveToPoint(context, lastPoint.x, lastPoint.y);
              CGContextAddLineToPoint(context, currentPoint.x, currentPoint.y);
              CGContextStrokePath(context);

              self.imageViewSubject.image = UIGraphicsGetImageFromCurrentImageContext();

              UIGraphicsEndImageContext();
              lastPoint = currentPoint;

       }


   }

問題は、ズームインしてから描画すると、絵がぼやけてしまうことです。しかし、ズームなしで描画すると、画像はそのまま残ります。

フレームが整数でなければならないことが原因である可能性があると聞いたので、次を追加します。

self.imageViewSubjectframe = CGRectIntegral(self.imageViewSubject.frame);

描く前ですが、最悪、もっとぼやけています。

何か案が?

4

0 に答える 0