无法在Swift 3.0中将CIImage转换为UIImage

Dal*_*vik 13 uiimage ios ciimage swift swift3

QR Code使用以下代码制作图像表格:

  func createQRFromString(str: String) -> CIImage? {
        let stringData = str.dataUsingEncoding(NSUTF8StringEncoding)

        let filter = CIFilter(name: "CIQRCodeGenerator")

        filter?.setValue(stringData, forKey: "inputMessage")

        filter?.setValue("H", forKey: "inputCorrectionLevel")

        return filter?.outputImage
    }
Run Code Online (Sandbox Code Playgroud)

然后我添加到UIImageView这样:

    if let img = createQRFromString(strQRData) {
        let somImage = UIImage(CIImage: img, scale: 1.0, orientation: UIImageOrientation.Down)
        imgviewQRcode.image = somImage
    }
Run Code Online (Sandbox Code Playgroud)

现在我需要将其保存到文件JPEGPNG文件中.但是,当我这样做时,我的应用程序崩溃:

    @IBAction func btnSave(sender: AnyObject) {

    //        // Define the specific path, image name
    let documentsDirectoryURL = try! NSFileManager().URLForDirectory(.DocumentDirectory, inDomain: .UserDomainMask, appropriateForURL: nil, create: true)
    // create a name for your image
    let fileURL = documentsDirectoryURL.URLByAppendingPathComponent("image.jpg")

    if let image = imgviewQRcode.image // imgviewQRcode is UIImageView
    {

        if let path = fileURL?.path
        {
            if !NSFileManager.defaultManager().fileExistsAtPath(fileURL!.path!)
            {
                if UIImageJPEGRepresentation(image, 1.0)!.writeToFile(path, atomically: true)
                {
                    print("file saved")
                }

            }//Checking existing file

        }//Checking path

    }//CHecking image

}
Run Code Online (Sandbox Code Playgroud)

崩溃点

  UIImageJPEGRepresentation(image, 1.0)!.writeToFile(path, atomically: true)
Run Code Online (Sandbox Code Playgroud)

原因

fatal error: unexpectedly found nil while unwrapping an Optional value
Run Code Online (Sandbox Code Playgroud)

调试测试:

在此输入图像描述

小智 52

func convert(cmage:CIImage) -> UIImage
{       
    let context:CIContext = CIContext.init(options: nil)
    let cgImage:CGImage = context.createCGImage(cmage, from: cmage.extent)!        
    let image:UIImage = UIImage.init(cgImage: cgImage)        
    return image
}
Run Code Online (Sandbox Code Playgroud)

使用此函数将CIImage转换为UIImage.有用 .


bto*_*om5 5

 func convert(image:CIImage) -> UIImage
 {           
    let image:UIImage = UIImage.init(ciImage: image)        
    return image
 }
Run Code Online (Sandbox Code Playgroud)

也许,这在以前是不可用的,但现在可以直接从 CIImage 创建 UIImage。