如何仅缩放图像视图中的可见图像而不是图像的透明部分?

时间:2016-09-12 11:48:31

标签: ios objective-c uiimageview uitapgesturerecognizer pinchzoom

我在UIView中有一个scrollView,ScrollView.scrollview和imageview中的imageView具有相同的大小。我设置的图像视图内容模式是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.原始图像 enter image description here 2.图像缩放后 enter image description here enter image description here

提前致谢。

1 个答案:

答案 0 :(得分:0)

的Objective-C

我认为您应该检查我的演示项目: https://github.com/VivekVithlani/PinchZoom-Objective-c.git

我没有实现双击来缩放,它只是捏缩放。

你的问题100%解决了