我使用UIImagePickerController从ipad中的照片库中获取了UIImage。现在我想将该图像保存在与我的应用程序关联的目录中,并包含已添加的图像。我也有目录的网址。
例如:file://localhost/Users/administrator/Library/Application%20Support/iPhone%20Simulator/5.0/Applications/31816EF9-AE1E-40DF-93C4-C67A82E4B85B/Documents/7884/Images/
如何在指定目录中保存uiimage?
答案 0 :(得分:1)
使用此代码将其保存到文档目录中。
NSData *pngData = UIImagePNGRepresentation(image);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];
NSString *filePath = [documentsPath stringByAppendingPathComponent:@"image.png"];
[pngData writeToFile:filePath atomically:YES];