Crop UIImage to fit a frame image

后端 未结 4 1200
眼角桃花
眼角桃花 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:16

    Use an UIImageView and do

    imageView.contentMode = UIViewContentModeScaleAspectFit;
    

提交回复
热议问题