mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
438 B
Swift
17 lines
438 B
Swift
7 years ago
|
//
|
||
6 years ago
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
||
7 years ago
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension UIImage {
|
||
|
@objc
|
||
7 years ago
|
public func asTintedImage(color: UIColor) -> UIImage? {
|
||
7 years ago
|
let template = self.withRenderingMode(.alwaysTemplate)
|
||
|
let imageView = UIImageView(image: template)
|
||
|
imageView.tintColor = color
|
||
|
|
||
6 years ago
|
return imageView.renderAsImage(opaque: imageView.isOpaque, scale: UIScreen.main.scale)
|
||
7 years ago
|
}
|
||
|
}
|