Image Cropper没有给出预期的结果

时间:2017-02-13 09:58:11

标签: ios iphone swift swift3.0.2 cropper

我正在实施一个图像裁剪器,它将裁剪从相机拍摄的图像。这是UI的实际结果和预期结果。

See screenshot

我按了this回答来获得所需的可见图像框。

在此之后,下面是我使用可见帧裁剪图像的代码:

func crop(_ rect: CGRect) -> UIImage {
    if imagepicked.scale > 1.0 {
      _ = CGRect(x: CGFloat(rect.origin.x * imagepicked.scale), y: CGFloat(rect.origin.y * imagepicked.scale), width: CGFloat(rect.size.width * imagepicked.scale)*2, height: CGFloat(rect.size.height * imagepicked.scale)*2)
    }
    let imageRef: CGImage? = imagepicked.cgImage?.cropping(to: rect)
    let result = UIImage(cgImage: imageRef!, scale: imagepicked.scale, orientation: imagepicked.imageOrientation)
    return result
} 

但我没有得到预期的结果。

0 个答案:

没有答案