added iOS source code
[wl-app.git] / iOS / WolneLektury / Extensions / UIImage+Ext.swift
1 //
2 //  UIImage+Ext.swift
3 //  WolneLektury
4 //
5 //  Created by Pawel Dabrowski on 30/05/2018.
6 //  Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
7 //
8
9 import Foundation
10 import UIKit
11
12 extension UIImage{
13     
14     static func imageFromColor(colour: UIColor) -> UIImage? {
15         let rect = CGRect(x: 0, y: 0, width: 1, height: 1)
16         UIGraphicsBeginImageContext(rect.size)
17         if let context = UIGraphicsGetCurrentContext() {
18             context.setFillColor(colour.cgColor)
19             context.fill(rect)
20             
21             let image = UIGraphicsGetImageFromCurrentImageContext()
22             UIGraphicsEndImageContext()
23             return image
24         }
25         return nil
26     }
27 }