`
zjjzmw1
  • 浏览: 1352691 次
  • 性别: Icon_minigender_1
  • 来自: 开封
社区版块
存档分类
最新评论

ios上传图片-阳阳的

    博客分类:
  • iOS
 
阅读更多

-(UIImage *)yasuoCameraImage:(UIImage *)image{
    int size = 204800;
    int current_size = 0;
    int actual_size = 0;
    NSData *imgData1 = UIImageJPEGRepresentation(image, 1.0);
    current_size = [imgData1 length];
    if (current_size > size) {
        actual_size = size/current_size;
        imgData1 = UIImageJPEGRepresentation(image, actual_size);
    }
    UIImage *theImage = [UIImage imageWithData:imgData1];
    return theImage; //返回压缩后的图片
}

 

 

 

 

imgData1 = UIImageJPEGRepresentation(image, actual_size);

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics