Created
October 2, 2019 08:16
-
-
Save VojtaStruhar/6c7f7c54c9b27cb2eafa0cd23dc39c57 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum FilterType : String { | |
case Mono = "CIPhotoEffectMono" | |
case MonoChrome = "CIColorMonochrome" | |
case Noir = "CIPhotoEffectNoir" | |
case Tonal = "CIPhotoEffectTonal" | |
case Sharpen = "CIUnsharpMask" | |
case Blur = "CIGaussianBlur" | |
case Pixelate = "CIPixellate" | |
case Edges = "CIEdges" | |
case Negative = "CIColorInvert" | |
case Posterize = "CIColorPosterize" | |
case NoiseReduction = "CINoiseReduction" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment