0
我想保存一個帶「.wai」擴展名的圖像,發送它通過whatsapp.h ow我可以保存圖像的格式? 的WhatsApp的網站沒有一個示例代碼,以獲取更多信息這是鏈接(想必訪問此鏈接你明白我的問題),如果你只是重命名`.JPG會發生什麼用自定義格式保存uiimage
http://www.whatsapp.com/faq/en/iphone/23559013
我想保存一個帶「.wai」擴展名的圖像,發送它通過whatsapp.h ow我可以保存圖像的格式? 的WhatsApp的網站沒有一個示例代碼,以獲取更多信息這是鏈接(想必訪問此鏈接你明白我的問題),如果你只是重命名`.JPG會發生什麼用自定義格式保存uiimage
http://www.whatsapp.com/faq/en/iphone/23559013
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];
'或'.png'到'.wai'?可以這麼簡單。 – Cyrille