将图像保存到文档文件夹
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将图像保存到文档文件夹相关的知识,希望对你有一定的参考价值。
NSString *path
= [[NSHomeDirectory
() stringByAppendingPathComponent
:@"Documents"] stringByAppendingPathComponent:@"images"];
// save the file
NSString *imagePath
= [path stringByAppendingPathComponent
:[NSString stringWithFormat
:@"%@.png",
[imageName stringByReplacingOccurrencesOfString:@" " withString:@"_"]]];
if ([[NSFileManager defaultManager
] fileExistsAtPath
:imagePath
]) { // delete if exist
[[NSFileManager defaultManager
] removeItemAtPath
:imagePath error
:nil];
}
NSData *imageDate
= [NSData dataWithData
:UIImagePNGRepresentation
(image
)];
[imageDate writeToFile: imagePath atomically: YES];
以上是关于将图像保存到文档文件夹的主要内容,如果未能解决你的问题,请参考以下文章
从 iOS 上的 UIView 将图像保存到应用程序文档文件夹
如何将照片库中的图像保存到应用程序的文档文件夹
使用覆盖将图像保存到文档目录
将相机捕获的图像保存到ios中的文档目录中[重复]
使用 exif 将原始图像从 ALAsset 对象写入文档目录文件夹
如何将图片从图片库保存到应用程序的文档文件夹中