美文网首页
iOS 颜色转图片

iOS 颜色转图片

作者: iOS门三闫 | 来源:发表于2019-08-10 17:51 被阅读0次

    -(UIImage*)createImageWithColor:(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();returntheImage;

    }

    调用:

     [self createImageWithColor:[UIColor whiteColor]]

    相关文章

      网友评论

          本文标题:iOS 颜色转图片

          本文链接:https://www.haomeiwen.com/subject/wvorjctx.html