您的位置:首页 > 产品设计 > UI/UE

UIColor和UIImage转换

2016-07-14 14:30 513 查看
UIColor 转UIImage

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

}

 

UIImage转UIColor

[UIColor colorWithPatternImage:[UIImageimageNamed:@"EmailBackground.png"]]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: