Full list of Spatial Filters
Full list of Filters
Full list of Shader Effects
This filter applies a comic book-like effect to an image by enhancing the edges and reducing the color palette. It is often used to create a stylized or vintage look.
override func getCIFilter(_ ciImage: CIImage)->CIFilter { var currentCIFilter: CIFilter if ciFilter != nil { currentCIFilter = ciFilter! } else { currentCIFilter = CIFilter(name: type)! ciFilter=currentCIFilter } currentCIFilter.setValue(ciImage, forKey: kCIInputImageKey) return currentCIFilter }