CIImageProcessor
public protocol CIImageProcessor : ImageProcessor
Represents a processor based on a CIImage
Filter
.
It requires a filter to create an ImageProcessor
.
-
Undocumented
Declaration
Swift
var filter: Filter { get }
-
process(item:options:)
Extension methodProcesses the input
ImageProcessItem
with this processor.Note
See documentation of
ImageProcessor
protocol for more.Declaration
Swift
public func process(item: ImageProcessItem, options: KingfisherParsedOptionsInfo) -> Image?
Parameters
item
Input item which will be processed by
self
.options
Options when processing the item.
Return Value
The processed image.