1

我有一个UIView中的scrollView和ScrollView.scrollview和imageview中的imageView具有相同的size.I设置图像视图内容模式是UIViewContentModeScaleAspectFit。当我双击图像视图时,图像视图不仅缩放图像视图的可见图像,而且缩放图像的透明部分。如何仅放大图像视图中的可见图像不透明图像的一部分?

我只想缩放图像视图的可见图像。

image_scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0,0,screen_width,550)]; 
self.image_view = [[UIImageView alloc] initWithFrame:CGRectMake(0,0, image_scroll.frame.size.width, image_scroll.frame.size.height)]; 
self.image_view.backgroundColor=[UIColor clearColor]; 
self.image_view.contentMode = UIViewContentModeScaleAspectFit; 
self.image_view.clipsToBounds = true; 
self.image_view.userInteractionEnabled = YES; 
self.image_view.image=[UIImage imageNamed:@"img1.png"]; 
doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleDoubleTap:)]; 
[doubleTap setNumberOfTapsRequired:2]; 
[self.image_view addGestureRecognizer:doubleTap]; 
[image_scroll setMaximumZoomScale:4.0]; 
[image_scroll addSubview:self.image_view]; 


- (void)handleDoubleTap:(UIGestureRecognizer *)gestureRecognizer { 

     NSLog(@"handleDoubleTap"); 

     float newScale = [image_scroll zoomScale] * 2.0; 

     if (newScale > image_scroll.maximumZoomScale){ 
      newScale = image_scroll.minimumZoomScale; 
      CGRect zoomRect = [self zoomRectForScale:newScale withCenter:[gestureRecognizer locationInView:gestureRecognizer.view]]; 

      [image_scroll zoomToRect:zoomRect animated:YES]; 

     } 
     else{ 

      newScale = imageScroll.maximumZoomScale; 
      CGRect zoomRect = [self zoomRectForScale:newScale withCenter:[gestureRecognizer locationInView:gestureRecognizer.view]]; 

      [image_scroll zoomToRect:zoomRect animated:YES]; 
     } 
    } 
} 


- (CGRect)zoomRectForScale:(float)scale withCenter:(CGPoint)center { 

    CGRect zoomRect; 
    // the zoom rect is in the content view's coordinates. 
    // At a zoom scale of 1.0, it would be the size of the imageScrollView's bounds. 
    // As the zoom scale decreases, so more content is visible, the size of the rect grows. 
    zoomRect.size.height = [image_scroll frame].size.height/scale; 
    zoomRect.size.width = [image_scroll frame].size.width/scale; 

    // choose an origin so as to get the right center. 
    zoomRect.origin.x = center.x - (zoomRect.size.width/2.0); 
    zoomRect.origin.y = center.y - (zoomRect.size.height/2.0); 

    return zoomRect; 

} 

1.Original图像 enter image description here 2.After图像缩放 enter image description here enter image description here

在此先感谢。

+0

我也遇到了这个问题。 –

回答