UIColor转化UIImage

来源:互联网 发布:研究所20升级数据 编辑:程序博客网 时间:2024/05/18 05:14
- (UIImage *) buttonImageFromColor:(UIColor *)color {    CGRect rect = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);    UIGraphicsBeginImageContext(rect.size);    CGContextRef context = UIGraphicsGetCurrentContext();    CGContextSetFillColorWithColor(context, [color CGColor]);    CGContextFillRect(context, rect);    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();    return img;}

0 0
原创粉丝点击