用色值生成图片
Posted 黄镇威
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用色值生成图片相关的知识,希望对你有一定的参考价值。
- @interface UIImage (Color)
- + (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size;
- @end
- @implementation UIImage (Color)
- + (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;
- }
- @end
以上是关于用色值生成图片的主要内容,如果未能解决你的问题,请参考以下文章
关于elementt的upload图片上传标签的解读,上传视频。上传大文件切片——生成一个哈希值,Message的消息提示。