From 89ac8d93c35b47c905fd9dc4d49d75cbfcbaddd9 Mon Sep 17 00:00:00 2001 From: Nicolas Gonzalez Date: Tue, 6 Nov 2018 08:49:23 -0600 Subject: [PATCH] Updated Filter Doc --- README.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1b464d3f..ec355b10 100644 --- a/README.md +++ b/README.md @@ -355,12 +355,24 @@ Platforms: iOS, react-native-dom #### filter Add video filter -* **Normal (default)** - Normal Filter -* **Artistic** - Posterize Filter -* **Black N White** - Black and White Filter -* **Country** - Sepia Filter -* **Sunrise** - Warm Filter -* **Winter** - Cool Filter +* **FilterType.NONE (default)** - No Filter +* **FilterType.INVERT** - CIColorInvert +* **FilterType.MONOCHROME** - CIColorMonochrome +* **FilterType.POSTERIZE** - CIColorPosterize +* **FilterType.FALSE** - CIFalseColor +* **FilterType.MAXIMUMCOMPONENT** - CIMaximumComponent +* **FilterType.MINIMUMCOMPONENT** - CIMinimumComponent +* **FilterType.CHROME** - CIPhotoEffectChrome +* **FilterType.FADE** - CIPhotoEffectFade +* **FilterType.INSTANT** - CIPhotoEffectInstant +* **FilterType.MONO** - CIPhotoEffectMono +* **FilterType.NOIR** - CIPhotoEffectNoir +* **FilterType.PROCESS** - CIPhotoEffectProcess +* **FilterType.TONAL** - CIPhotoEffectTonal +* **FilterType.TRANSFER** - CIPhotoEffectTransfer +* **FilterType.SEPIA** - CISepiaTone + +For more details on these filters refer to the [iOS docs](https://developer.apple.com/library/archive/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/uid/TP30000136-SW55). Platforms: iOS