通过UIColor创建图片

不多说,代码如下:

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

{

    CGRect rect = CGRectMake(0, 0, 1, 1);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef contTextRef = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(contTextRef, [color CGColor]);

    CGContextFillRect(contTextRef, rect);

    UIImage * image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndPDFContext();

    return image;

}

你可能感兴趣的:(通过UIColor创建图片)