iOS用颜色值创建图片

- (UIImage *) createImageWithColor: (UIColor *) color 
{   
    CGRect rect = CGRectMake(0.0f,0.0f,1.0f,1.0f);  
    UIGraphicsBeginImageContext(rect.size);   
    CGContextRef context =UIGraphicsGetCurrentContext();  
    CGContextSetFillColorWithColor(context, [colorCGColor]);  
    CGContextFillRect(context, rect);   
    UIImage *myImage =UIGraphicsGetImageFromCurrentImageContext();  
    UIGraphicsEndImageContext();   
    return myImage;   
}   

posted @ 2014-12-08 11:33  wangpp  阅读(2453)  评论(0编辑  收藏  举报