使用自定义格式保存uiimage

时间:2013-10-21 09:23:54

标签: iphone uiimage whatsapp

我想保存带有“.wai”扩展名的图片,以便通过whatsapp.h发送 我可以用这种格式保存图像吗? whatsapp网站没有示例代码,更多信息这是链接(可能访问此链接,您了解我的问题)

http://www.whatsapp.com/faq/en/iphone/23559013

1 个答案:

答案 0 :(得分:1)

NSData *pngData = UIImagePNGRepresentation(drawimg.image);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];                        //Get the docs directory
filePath = [documentsPath stringByAppendingPathComponent:@"edited.wai"]; //Add the file name
[pngData writeToFile:filePath atomically:YES];