iOS 图片压缩

来源:互联网 发布:淘宝美工助理是什么 编辑:程序博客网 时间:2024/06/13 01:04
- (UIImage *)fitImageSizeWith:(UIImage *)img{    float destWith = 600.0;    float destHeight = 600.0;        CGSize itemSize = CGSizeMake(destWith, destHeight);    UIGraphicsBeginImageContext(itemSize);    CGRect imageRect = CGRectMake(0, 0, destWith + 1, destHeight);    [img drawInRect:imageRect];    UIImage *newImg = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();        return newImg;}

1 0
原创粉丝点击