美文网首页
颜色生成图片

颜色生成图片

作者: 西博尔 | 来源:发表于2016-07-12 17:58 被阅读31次

颜色生成图片

  • (UIImage *)buttonImageFromColor:(UIColor *)color{

    CGRect rect = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);

    CGContextFillRect(context, rect);

    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return img;

}

相关文章

网友评论

      本文标题:颜色生成图片

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