首页 > 代码库 > 通过UIColor转换为UIImage

通过UIColor转换为UIImage

+ (UIImage *)createImageWithColor:(UIColor *)color

{

    CGRect rect=CGRectMake(0.0f0.0f1.0f1.0f);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);

    CGContextFillRect(context, rect);

    

    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return theImage;

}

通过UIColor转换为UIImage