iOS 颜色转为image

2020-05-30  本文已影响0人  夜半度微凉

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

    CGRectrect=CGRectMake(0,0,1,1);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);

    CGContextFillRect(context, rect);

    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return theImage;

}

上一篇 下一篇

猜你喜欢

热点阅读