你的位置:首页 > 软件开发 > 操作系统 > iOS UIImage剪切圆形

iOS UIImage剪切圆形

发布时间:2015-08-18 19:00:09
//.h文件#import <UIKit/UIKit.h> @interface UIImage (XG)/** * @param icon 头像图片名称 * @param borderImage 边框的图 ...

 

//.h文件

#import <UIKit/UIKit.h>

 

@interface UIImage (XG)

/**

 *  @param icon         头像图片名称

 *  @param borderImage  边框的图片名称

 *  @param border       边框大小

 *

 *  @return 圆形的头像图片

 */

+ (instancetype)imageWithIconName:(NSString *)icon borderImage:(NSString *)borderImage border:(int)border;

@end

 

//.m文件

#import "UIImage+XG.h"

 

@implementation UIImage (XG)

+ (instancetype)imageWithIconName:(NSString *)icon borderImage:(NSString *)borderImage border:(int)border{

    //头像图片

    UIImage * image = [UIImage imageNamed:icon];

    //边框图片

    UIImage * borderImg = [UIImage imageNamed:borderImage];

    //

    CGSize size = CGSizeMake(image.size.width + border, image.size.height + border);

    

    //创建图片上下文

    UIGraphicsBeginImageContextWithOptions(size, NO, 0);

    

    //绘制边框的圆

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextAddEllipseInRect(context, CGRectMake(0, 0, size.width, size.height));

    

    //剪切可视范围

    CGContextClip(context);

    

    //绘制边框图片

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

    

    //设置头像frame

    CGFloat iconX = border / 2;

    CGFloat iconY = border / 2;

    CGFloat iconW = image.size.width;

    CGFloat iconH = image.size.height;

    

    //绘制圆形头像范围

    CGContextAddEllipseInRect(context, CGRectMake(iconX, iconY, iconW, iconH));

    

    //剪切可视范围

    CGContextClip(context);

    

    //绘制头像

    [image drawInRect:CGRectMake(iconX, iconY, iconW, iconH)];

    

    //取出整个图片上下文的图片

    UIImage *iconImage = UIGraphicsGetImageFromCurrentImageContext();

    

    return iconImage;

}

@end

  borderImage 是边框  不需要的话给nil就可以

  border   是边框宽度 不需要的话给0就行了

UIImage * image = [UIImage imageWithIconName:@"头像.png" borderImage:nil border:0];

 


原标题:iOS UIImage剪切圆形

关键词:IOS

IOS
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。