DynamicCompositeImageFilter
public struct DynamicCompositeImageFilter : CompositeImageFilter
The DynamicCompositeImageFilter
class is a composite image filter based on a specified array of filters.
-
The image filters to apply to the image in sequential order.
Declaration
Swift
public let filters: [ImageFilter]
-
Initializes the
DynamicCompositeImageFilter
instance with the given filters.Declaration
Swift
public init(_ filters: [ImageFilter])
Parameters
filters
The filters taking part in the composite image filter.
Return Value
The new
DynamicCompositeImageFilter
instance. -
Initializes the
DynamicCompositeImageFilter
instance with the given filters.Declaration
Swift
public init(_ filters: ImageFilter...)
Parameters
filters
The filters taking part in the composite image filter.
Return Value
The new
DynamicCompositeImageFilter
instance.