12345678910111213141516171819202122232425 |
- //
- // UIImage+ERCategory.m
- // ErHuDemo
- //
- // Created by 胡广宇 on 2017/7/11.
- // Copyright © 2017年 胡广宇. All rights reserved.
- //
- #import "UIImage+ERCategory.h"
- @implementation UIImage (ERCategory)
- + (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 *image = UIGraphicsGetImageFromCurrentImageContext();
- UIGraphicsEndImageContext();
- return image;
- }
- @end
|