您好我正在使用UIImagePickerController,它默认裁剪图像平方。有没有办法让它以16:9的宽高比进行裁剪?我在网上搜索过,但没有找到太多结果。
答案 0 :(得分:0)
试试这个GithubLink
let cropVC = ShittyImageCropVC(frame: (self.navigationController?.view.frame)!, image: imageToCrop, aspectWidth: 16, aspectHeight: 9)
self.navigationController?.present(cropVC, animated: true, completion: nil)