IOS开发:截取当前视图

这个是我自己在写一个小实验时,用到的功能。被我独立抽取出来

+(UIImage *)capturImageWithUIView:(UIView *)view{

    //开启位图上下文
    UIGraphicsBeginImageContext(view.bounds.size);
    //获取当前位图
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    //将视图渲染到位图上
    [view.layer renderInContext:ctx];
    //获取当前图片
    UIImage *currentImage = UIGraphicsGetImageFromCurrentImageContext();
    //结束位图编辑
    UIGraphicsEndImageContext();
    return currentImage;

}

下面这个是我随手写将方形图片截成圆形图片,并添加边框。

+(UIImage *)cutCircleImageWithUIImage:(UIImage *)image WithBorderColor:(UIColor *)color withBorderWidth:(CGFloat)width{

    CGRect imageRect = {{0,0},{image.size.width,image.size.height}};
    //开启位图上下文
    UIGraphicsBeginImageContextWithOptions(image.size, NO, 0.0);
    //获取当前位图
    CGContextRef ctx = UIGraphicsGetCurrentContext();

    //指定一个圆,将圆以外的部分删掉
    CGContextAddEllipseInRect(ctx, imageRect);
    CGContextClip(ctx);

    //将图片添加进来
    [image drawInRect:imageRect];
    //添加边框
    CGContextAddEllipseInRect(ctx, imageRect);
    CGContextSetLineWidth(ctx, width);
    [color set];
    CGContextStrokePath(ctx);

    //获取当前图片
    UIImage *screenImage = UIGraphicsGetImageFromCurrentImageContext();
    //结束位图编辑
    UIGraphicsEndImageContext();

    //将图片返回
    return screenImage;

}

文件放在云盘中:https://yunpan.cn/cP98wIjYCvQAZ (提取码:30f5)
各位朋友如果有好的小功能想法,或者对我的代码有建议都可以在评论里留言。如果觉得我写的还可以就请您点一下关注,若是可以请您一并关注我的微博:http://weibo.com/xiaopenguu 每次更新都会在微博中同步更新
感谢您的关注。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值