UIColor转换为UIImage详解手机开发

/** 
 *  color转image 
 */ 
- (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(); 
    return theImage; 
}

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/3322.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论