• iOS UIImage剪切圆形


    //.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];

  • 相关阅读:
    !!!!Linux系统开发 系列 4 进程资源 环境 fork()子进程 wait() waitpid()僵尸 孤儿进程
    linux运维工程师
    C# CSGL
    C# 中的"yield"使用
    C#语法糖
    VS2017下Git的使用
    Oracle数据类型与.NET中的对应关系
    Java 8 Stream
    Java 8 默认方法
    Java 8 函数式接口
  • 原文地址:https://www.cnblogs.com/guochaoboke/p/4740243.html
Copyright © 2020-2023  润新知