gpt4 book ai didi

ios - 我想将图像保存在 UIImageView swift 3 的特定文件夹中

转载 作者:搜寻专家 更新时间:2023-10-31 22:11:30 25 4
gpt4 key购买 nike

我想将图像从 imageview 保存到特定文件夹图像来自 Sqlserver。我想在 sqlite 中保存它的链接以供进一步处理我已经编写了这段代码,它在文档目录中保存图像,但每次路径都不同。请告诉我该怎么做?

 let imageData = UIImagePNGRepresentation(imageee.image!)!
let docDir = try! FileManager.default.url(for: .picturesDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
let imageURL = docDir.appendingPathComponent("tmp.png")
try! imageData.write(to: imageURL)

print(imageURL.path)
let newImage = UIImage(contentsOfFile: imageURL.path)!
//aftersave.image = newImage
aftersave.image = newImage

最佳答案

创建一个我在链接中给你的 swift 类文件,然后用下面的行调用那个类。

// orignal_image was UIImageView 
CustomPhotoAlbum.sharedInstance.save(image: orignal_image)

Class File Click Here

您必须做的最重要的事情是在 info.plist 文件中添加这一行

<key>NSPhotoLibraryUsageDescription</key>
<string>YOUR APP need access to your camera roll and photo library</string>

关于ios - 我想将图像保存在 UIImageView swift 3 的特定文件夹中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43818283/

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