Full list of Spatial Filters
Full list of Filters
Full list of Shader Effects
This filter creates a bump distortion effect by warping the image around a specified point. It is often used to create a 3D-like effect.
Center: The center of the bump distortion effect. This parameter controls the point around which the image will be warped.
Radius: The radius of the bump distortion effect. This parameter controls the extent of the distortion applied to the image.
Angle: The angle of the bump distortion effect. This parameter controls the direction of the distortion applied to the image.
Scale: The scale of the bump distortion effect. This parameter controls the intensity of the distortion applied to the image.
override func getCIFilter(_ ciImage: CIImage)->CIFilter { let currentCIFilter = CIFilter(name: type)! currentCIFilter.setValue(ciImage, forKey: kCIInputImageKey) let tcenter=CIVector(x:centerX,y:centerY) currentCIFilter.setValue(tcenter, forKey: kCIInputCenterKey) currentCIFilter.setValue(radius, forKey: kCIInputRadiusKey) currentCIFilter.setValue(scale, forKey: kCIInputScaleKey) currentCIFilter.setValue(angle, forKey: kCIInputAngleKey) ciFilter=currentCIFilter return currentCIFilter }