裁剪图像出现错误
Posted
技术标签:
【中文标题】裁剪图像出现错误【英文标题】:crop an image getting error 【发布时间】:2017-05-23 12:37:05 【问题描述】:我正在尝试在我的 Xcode 项目中实现一个裁剪窗格。
我收到此错误,我不知道为什么。
谁能帮忙。
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】:这是init(cgImage:scale:orientation:)
而不是init(CGImage:scale:orientation:)
。
let result = UIImage(cgImage: imageRef!, scale: imageToCrop!.scale, orientation: imageToCrop!.imageOrientation)
【讨论】:
您应该投票结束这个问题,因为这是一个错字或无法再复制的问题。以上是关于裁剪图像出现错误的主要内容,如果未能解决你的问题,请参考以下文章