NSData與UIImage之間的轉換

weixin_34138377發表於2016-08-11

NSData轉換為UIImage:

//從本地拿資料     
NSString *imagePath = [[NSBundle mainBundle] pathForResource:fileName ofType:type];
//fileName為圖片檔名,type為圖片型別 ,假如有一張oneImage.png的圖片
//NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"oneImage" ofType:@"png"];
NSData *imageData = [NSData dataWithContentsOfFile:imagePath];
//從網路拿資料     urlStr為統一資源定位符(即網站地址)
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:urlStr]];
UIImage *image = [UIImage imageWithData:imageData];

UIImage轉換為NSData

NSData *imageData = UIImagePNGRepresentation(image);

相關文章