编辑
如何更改图片颜色(iOS)
本文访问次数:0
  1. 1. 项目需求
  2. 2. 更改颜色
  3. 3. 相关函数

项目需求

根据服务器端返回的参数,更改图片的颜色并保留透明度,点击查看Android下如何操作

更改颜色

UIImage* originalImage = [UIImage imageNamed:@"btn_right_arrow_circled"];
UIImage* newImage = [Utils changeColor:[Utils colorOfHexString:color] ofImage:originalImage];

相关函数

+ (UIImage*)changeColor:(UIColor*)color ofImage:(UIImage*)image {
    UIGraphicsBeginImageContext (image.size);
    CGRect rect = CGRectMake (0, 0, image.size.width, image.size.height);

    UIGraphicsBeginImageContext (rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext ();
    CGContextSaveGState (context);

    [color setFill];
    CGContextFillRect (context, rect);

    //一定要将BlendMode设置为kCGBlendModeDestinationIn
    CGContextSetBlendMode (context, kCGBlendModeDestinationIn);
    [image drawInRect:rect blendMode:kCGBlendModeDestinationIn alpha:1];

    UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext ();

    UIGraphicsEndImageContext ();

    return newImage;
}

需要输入验证码才能留言

没有任何评论