美文网首页
IOS图片压缩

IOS图片压缩

作者: 蜗牛1992 | 来源:发表于2016-09-03 22:05 被阅读17次
NSData *pdata = UIImageJPEGRepresentation(pImage, 1);

  pData = UIImageJPEGRepresentation(pImage, 1);
    CGFloat pSize = [pData length]/(1024*1024);

    if ( pSize <1) {
        [pData writeToFile:TMP_IMG atomically:YES];
    }else{
        pData = UIImageJPEGRepresentation(pImage, 1/(pSize+0.5));
        [pData writeToFile:TMP_IMG atomically:YES];
    }

相关文章

网友评论

      本文标题:IOS图片压缩

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