AspectScaledToFillSizeFilter
public struct AspectScaledToFillSizeFilter: ImageFilter, Sizable
Scales an image from the center while maintaining the aspect ratio to fill a specified size. Any pixels that fall outside the specified size are clipped.
-
The size of the filter.
Declaration
Swift
public let size: CGSize
-
Initializes the
AspectScaledToFillSizeFilter
instance with the given size.Declaration
Swift
public init(size: CGSize)
-
The filter closure used to create the modified representation of the given image.
Declaration
Swift
public var filter: (Image) -> Image