永发信息网

ios开发中怎么将uiimage转为cgcolor

答案:1  悬赏:0  手机版
解决时间 2021-11-26 19:25
  • 提问者网友:伴风望海
  • 2021-11-26 05:55
ios开发中怎么将uiimage转为cgcolor
最佳答案
  • 五星知识达人网友:青灯有味
  • 2021-11-26 06:49
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"]]
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯