Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created December 9, 2015 07:54
Show Gist options
  • Save MaximAlien/f7a471cbc1a4d5fb760e to your computer and use it in GitHub Desktop.
Save MaximAlien/f7a471cbc1a4d5fb760e to your computer and use it in GitHub Desktop.
[iOS] Category which is used to create UIImage * from UIColor
@implementation UIImage (ImageFromColorCategory)
+ (UIImage *)imageFromColor:(UIColor *)color withSize:(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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment