Skip to content

Instantly share code, notes, and snippets.

@wisaruthk
Last active August 29, 2015 14:09
Show Gist options
  • Save wisaruthk/983969bfe06406cff796 to your computer and use it in GitHub Desktop.
Save wisaruthk/983969bfe06406cff796 to your computer and use it in GitHub Desktop.
CGRect mybounds = CGRectMake(0, 0, 24, 24);
UIGraphicsBeginImageContext( mybounds.size );
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [[UIColor redColor] CGColor]);
CGContextFillRect(context, mybounds);
UIImage *finalImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment