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)
现在我需要将其保存到文件JPEG
或PNG
文件中.但是,当我这样做时,我的应用程序崩溃:
@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.有用 .
func convert(image:CIImage) -> UIImage
{
let image:UIImage = UIImage.init(ciImage: image)
return image
}
Run Code Online (Sandbox Code Playgroud)
也许,这在以前是不可用的,但现在可以直接从 CIImage 创建 UIImage。
归档时间: |
|
查看次数: |
13144 次 |
最近记录: |