首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

UIImage存为本土文件,UIImage转换为NSData

2012-09-17 
UIImage存为本地文件,UIImage转换为NSData?UIImage *m_imgFore......//png格式NSData *imagedataUIImag

UIImage存为本地文件,UIImage转换为NSData

?

UIImage *m_imgFore=......;

//png格式

NSData *imagedata=UIImagePNGRepresentation(m_imgFore);

//JEPG格式

//NSData?*imagedata=UIImageJEPGRepresentation(m_imgFore,1.0);

NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);

NSString *documentsDirectory=[paths objectAtIndex:0];?

NSString *savedImagePath=[documentsDirectory stringByAppendingPathComponent:@"saveFore.png"];

[imagedata writeToFile:savedImagePath atomically:YES];

?

本地默认存放路径:

Finder---位置----app(用户名)---application support---iphone Sinulator---4.3---Applications--模拟器--

?

热点排行