IMGLYCropFilter

open class IMGLYCropFilter : CIFilter

Provides a filter to crop images.

  • A CIImage object that serves as input for the filter.

    Declaration

    Swift

    @objc
    open var inputImage: CIImage?
  • A rect that describes the area that should remain after cropping. The values are relative.

    Declaration

    Swift

    open var cropRect: CGRect
  • Undocumented

    Declaration

    Swift

    required public init?(coder aDecoder: NSCoder)
  • Returns a CIImage object that encapsulates the operations configured in the filter. (read-only)

    Declaration

    Swift

    open override var outputImage: CIImage? { get }
  • Undocumented

    Declaration

    Swift

    open override func copy(with zone: NSZone?) -> Any