ios根据颜色生成图片

2016-12-03  本文已影响160人  508e0be44880

/**

*  生成图片

*

*  @param color  图片颜色

*  @param height 图片高度

*

*  @return 生成的图片

*/- (UIImage*) GetImageWithColor:(UIColor*)color andHeight:(CGFloat)height{CGRectr=CGRectMake(0.0f,0.0f,1.0f, height);UIGraphicsBeginImageContext(r.size);CGContextRefcontext =UIGraphicsGetCurrentContext();CGContextSetFillColorWithColor(context, [colorCGColor]);CGContextFillRect(context, r);UIImage*img =UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();returnimg;}

上一篇下一篇

猜你喜欢

热点阅读