美文网首页杂乱
iOS 利用颜色生成图片

iOS 利用颜色生成图片

作者: Refusing | 来源:发表于2018-06-26 16:29 被阅读4次

    根据颜色生成图片


    - (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;

    }

    相关文章

      网友评论

        本文标题:iOS 利用颜色生成图片

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