杂乱

iOS 利用颜色生成图片

2018-06-26  本文已影响4人  Refusing

根据颜色生成图片


- (UIImage *)imageWithColor:(UIColor *)color {

     CGRect rect=CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);

    CGContextFillRect(context, rect);

    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return theImage;

}

上一篇 下一篇

猜你喜欢

热点阅读