黑马程序员技术交流社区
标题:
颜色生成图片方法
[打印本页]
作者:
iOS小学生
时间:
2018-6-27 12:05
标题:
颜色生成图片方法
- (
UIImage
*)imageWithColor:(
UIColor
*)color size:(
CGSize
)size {
CGRect
rect =
CGRectMake
(
0
,
0
, size.
width
, size.
height
);
UIGraphicsBeginImageContext
(rect.
size
);
CGContextRef
context =
UIGraphicsGetCurrentContext
();
CGContextSetFillColorWithColor
(context,color.
CGColor
);
CGContextFillRect
(context, rect);
UIImage
*img =
UIGraphicsGetImageFromCurrentImageContext
();
UIGraphicsEndImageContext
();
return
img;
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2