Full list of Spatial Filters
Full list of Filters
Full list of Shader Effects
This filter adds a soft, glowing effect to an image by blurring the bright areas. It is often used to create a dreamy or ethereal look.
Radius: The radius of the bloom effect. This parameter controls the extent of the blur applied to the bright areas of the image.
Intensity: The intensity of the bloom effect. This parameter controls the strength of the glow applied to the bright areas of the image.
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) currentCIFilter.setValue(radius, forKey: kCIInputRadiusKey) currentCIFilter.setValue(intensity, forKey: kCIInputIntensityKey) return currentCIFilter }