ScaledToSizeFilter

public struct ScaledToSizeFilter: ImageFilter, Sizable

Scales an image to a specified size.

  • The size of the filter.

    Declaration

    Swift

    public let size: CGSize
  • Initializes the ScaledToSizeFilter 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