TransformEnhancePreset

@objc(FSTransformEnhancePreset)
public enum TransformEnhancePreset : UInt, CustomStringConvertible

Represents an enhance transformation preset.

  • Automatically chooses a preset that does best enhancement to a photo.

    Declaration

    Swift

    case auto
  • Gives more depth and brightness to a photo.

    Declaration

    Swift

    case vivid
  • Automatically scans each face in the photo and adjusts how much corrections to apply to each face.

    Declaration

    Swift

    case beautify
  • Similar to beautify, but it applies stronger corrections and uses a larger set of possible modifications.

    Declaration

    Swift

    case beautifyPlus
  • By turning off the contrast, maximum detail is retrieved from the shadow areas without blowing out the bright areas.

    Declaration

    Swift

    case fixDark
  • Automatically detects noise, and if detected, applies powerful noise removal to remove any grains from your photos while preserving details.

    Declaration

    Swift

    case fixNoise
  • Removes abnormal tint (yellow, blue, green, etc.) from your photos.

    Declaration

    Swift

    case fixTint
  • Optimizes your landscape photographs with more color vibrancy. The contrast is adjusted to reveal slightly more detail in the shadow areas.

    Declaration

    Swift

    case outdoor
  • Applies correction for dark night sky and sets off excess colors from fireworks.

    Declaration

    Swift

    case fireworks

CustomStringConvertible Conformance

  • Returns a String representation of self.

    Declaration

    Swift

    public var description: String { get }