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

UIImage缩放

时间:2016-04-20 16:27:14      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

+(UIImage *)scaleImage: (UIImage *)image scaleFactor:(float)scaleFloat

{

    CGSize size = CGSizeMake(image.size.width * scaleFloat, image.size.height * scaleFloat);

    

    UIGraphicsBeginImageContext(size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGAffineTransform transform = CGAffineTransformIdentity;

    

    transform = CGAffineTransformScale(transform, scaleFloat, scaleFloat);

    CGContextConcatCTM(context, transform);

    

    // Draw the image into the transformed context and return the image

    [image drawAtPoint:CGPointMake(0.0f, 0.0f)];

    UIImage *newimg = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    

    return newimg;

}

UIImage缩放

标签:

原文地址:http://www.cnblogs.com/cnman/p/5413223.html

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