|
@@ -12,29 +12,34 @@ extension UIImage {
|
|
return self
|
|
return self
|
|
}
|
|
}
|
|
|
|
|
|
- func maskWithColor(color: UIColor) -> UIImage? {
|
|
|
|
- let maskImage = cgImage!
|
|
|
|
-
|
|
|
|
- let width = size.width
|
|
|
|
- let height = size.height
|
|
|
|
- let bounds = CGRect(x: 0, y: 0, width: width, height: height)
|
|
|
|
-
|
|
|
|
- let colorSpace = CGColorSpaceCreateDeviceRGB()
|
|
|
|
- let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.premultipliedLast.rawValue)
|
|
|
|
- let context = CGContext(data: nil, width: Int(width), height: Int(height), bitsPerComponent: 8, bytesPerRow: 0, space: colorSpace, bitmapInfo: bitmapInfo.rawValue)!
|
|
|
|
-
|
|
|
|
- context.clip(to: bounds, mask: maskImage)
|
|
|
|
- context.setFillColor(color.cgColor)
|
|
|
|
- context.fill(bounds)
|
|
|
|
-
|
|
|
|
- if let cgImage = context.makeImage() {
|
|
|
|
- let coloredImage = UIImage(cgImage: cgImage)
|
|
|
|
- return coloredImage
|
|
|
|
- } else {
|
|
|
|
- return nil
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ func maskWithColor(color: UIColor) -> UIImage? {
|
|
|
|
+ let maskImage = cgImage!
|
|
|
|
+
|
|
|
|
+ let width = size.width
|
|
|
|
+ let height = size.height
|
|
|
|
+ let bounds = CGRect(x: 0, y: 0, width: width, height: height)
|
|
|
|
+ let colorSpace = CGColorSpaceCreateDeviceRGB()
|
|
|
|
+ let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.premultipliedLast.rawValue)
|
|
|
|
+ let context = CGContext(
|
|
|
|
+ data: nil,
|
|
|
|
+ width: Int(width),
|
|
|
|
+ height: Int(height),
|
|
|
|
+ bitsPerComponent: 8,
|
|
|
|
+ bytesPerRow: 0,
|
|
|
|
+ space: colorSpace,
|
|
|
|
+ bitmapInfo: bitmapInfo.rawValue
|
|
|
|
+ )!
|
|
|
|
+ context.clip(to: bounds, mask: maskImage)
|
|
|
|
+ context.setFillColor(color.cgColor)
|
|
|
|
+ context.fill(bounds)
|
|
|
|
+
|
|
|
|
+ if let cgImage = context.makeImage() {
|
|
|
|
+ let coloredImage = UIImage(cgImage: cgImage)
|
|
|
|
+ return coloredImage
|
|
|
|
+ } else {
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
public convenience init?(color: UIColor, size: CGSize = CGSize(width: 1, height: 1)) {
|
|
public convenience init?(color: UIColor, size: CGSize = CGSize(width: 1, height: 1)) {
|
|
let rect = CGRect(origin: .zero, size: size)
|
|
let rect = CGRect(origin: .zero, size: size)
|
|
@@ -47,7 +52,6 @@ extension UIImage {
|
|
guard let cgImage = image?.cgImage else { return nil }
|
|
guard let cgImage = image?.cgImage else { return nil }
|
|
self.init(cgImage: cgImage)
|
|
self.init(cgImage: cgImage)
|
|
}
|
|
}
|
|
-
|
|
|
|
}
|
|
}
|
|
|
|
|
|
public enum ImageType: String {
|
|
public enum ImageType: String {
|