美文网首页
(IOS)图片压缩

(IOS)图片压缩

作者: rightmost | 来源:发表于2018-12-26 17:08 被阅读0次

+ (UIImage*)imageWithImage:(UIImage*)image scaledToSize:(CGSize)size {

    UIGraphicsBeginImageContext(size);

    [imagedrawInRect:CGRectMake(0,0, size.width, size.height)];

    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    returnnewImage;

}

相关文章

网友评论

      本文标题:(IOS)图片压缩

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