码迷,mamicode.com
首页 > 其他好文 > 详细

压缩图片,直接使用大图,在小控件上会有毛边

时间:2018-05-10 19:36:13      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:width   rom   graphics   win   ||   text   size   with   begin   

使用UIImage+YYAdd.h的:

- (UIImage *)imageByResizeToSize:(CGSize)size {
    if (size.width <= 0 || size.height <= 0) return nil;
    UIGraphicsBeginImageContextWithOptions(size, NO, self.scale);
    [self drawInRect:CGRectMake(0, 0, size.width, size.height)];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
}

 

压缩图片,直接使用大图,在小控件上会有毛边

标签:width   rom   graphics   win   ||   text   size   with   begin   

原文地址:https://www.cnblogs.com/tufei7/p/9021116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!