Crop UIImage to fit a frame image

后端 未结 4 1235
眼角桃花
眼角桃花 2020-12-09 01:46

I need to crop a UIImage, taken with the device camera, so that it fits inside another UIImage, which represents a frame (with rounded

4条回答
  •  鱼传尺愫
    2020-12-09 02:14

    In Interface Builder, use the following configuration:

    enter image description here

    There are two important settings, namely:

    1. Mode: Aspect Fill

    2. Clip Subviews

    It can also be done programmatically:

    [imageView setContentMode:UIViewContentModeScaleAspectFill];
    [imageView setClipsToBounds:YES];
    

    This will correctly fill the view with the image, keep its aspect ratio and hide what doesn't fit.

提交回复
热议问题