Filter
public struct Filter
A wrapper struct for a Transformer
of CIImage filters. A Filter
value could be used to create a CIImage
processor.
-
Undocumented
Declaration
Swift
public init(transform: @escaping Transformer)
-
Tint filter which will apply a tint color to images.
Declaration
Swift
public static var tint: (Color) -> Filter
-
Represents color control elements. It is a tuple of
(brightness, contrast, saturation, inputEV)
Declaration
Swift
public typealias ColorElement = (CGFloat, CGFloat, CGFloat, CGFloat)
-
Color control filter which will apply color control change to images.
Declaration
Swift
public static var colorControl: (Filter.ColorElement) -> Filter