美文网首页
NSData与UIImage之间的转换

NSData与UIImage之间的转换

作者: CombatReadiness | 来源:发表于2016-08-11 00:38 被阅读317次

    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);
    

    相关文章

      网友评论

          本文标题:NSData与UIImage之间的转换

          本文链接:https://www.haomeiwen.com/subject/twlgjttx.html