gpt4 book ai didi

ios - 我想快速将 UIImage 与字符串进行编码和解码,以获取 AEXML 中的值

转载 作者:行者123 更新时间:2023-11-30 12:32:39 25 4
gpt4 key购买 nike

//为了编码,我找到了以下示例。不知道现在能不能用

@IBAction func exitImageViewController(seque:UIStoryboardSegue){

    let imageController = seque.destination as! MyImageViewController
let myView = imageController.imageView
imageData = UIImagePNGRepresentation((myView?.image!)!)
imageString = imageData?.base64EncodedString()

//这个 swift 代码正确吗?

//我找不到将 String 解码回 UIImage 的示例

最佳答案

您发布的代码看起来不错。要编码回来,您可以这样做:

let data = Data(base64Encoded: imageString!)

let img = UIImage(data: data!)

关于ios - 我想快速将 UIImage 与字符串进行编码和解码,以获取 AEXML 中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43306177/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com