Skip to content

Instantly share code, notes, and snippets.

@enix223
Created November 29, 2016 05:09
Show Gist options
  • Save enix223/14c532e04ba6153ea21ffc476b0e3789 to your computer and use it in GitHub Desktop.
Save enix223/14c532e04ba6153ea21ffc476b0e3789 to your computer and use it in GitHub Desktop.
Create an image with specific color
func imageWithColor(_ color: UIColor) -> UIImage {
let rect = CGRect(x: 0, y: 0, width: 1, height: 1)
UIGraphicsBeginImageContext(rect.size)
let context = UIGraphicsGetCurrentContext()
context!.setFillColor(color.cgColor)
context!.fill(rect)
let image = UIGraphicsGetImageFromCurrentImageContext()!
UIGraphicsEndImageContext()
return image
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment