裁剪图像得到错误

时间:2017-05-23 12:37:06

标签: swift xcode cocoapods crop

我正在尝试为我的Xcode项目实现一个裁剪pod。

我收到此错误,我不确定原因。

任何人都可以提供帮助。

   let imageRef = imageToCrop!.cgImage!.cropping(to: visibleRect)
    let result = UIImage(CGImage: imageRef!, scale: imageToCrop!.scale,
        orientation: imageToCrop!.imageOrientation)

    return result
}

但是收到此错误

  

模糊地使用' init(CGImage:scale:orientation:)'

1 个答案:

答案 0 :(得分:4)

init(cgImage:scale:orientation:)而非init(CGImage:scale:orientation:)

let result = UIImage(cgImage: imageRef!, scale: imageToCrop!.scale, orientation: imageToCrop!.imageOrientation)