Various color matrix based image filters for iOS & Android.
$ npm install react-native-color-matrix-image-filters --save
$ react-native link react-native-color-matrix-image-filters
If you use Cocoapods add the following line to your Podfile:
pod 'React', :path => '../node_modules/react-native'
pod 'RNColorMatrixImageFilters', :path => '../node_modules/react-native-color-matrix-image-filters'
- iOS & Android - filter components work as stackable wrappers for standard
Image
andImageBackground
components. - React-Native:
- with rn >= 0.56.0 use latest version
import { Image } from 'react-native';
import {
BlackAndWhite,
Sepia,
Tint,
ColorMatrix,
concatColorMatrices,
invert,
contrast,
saturate
} from 'react-native-color-matrix-image-filters';
const BlackAndWhiteImage = (imageProps) => (
<BlackAndWhite>
<Image {...imageProps} />
</BlackAndWhite>
);
const CombinedFiltersImage = (imageProps) => (
<Tint value={1.25}>
<Sepia>
<Image {...imageProps} />
</Sepia>
</Tint>
);
const ColorMatrixImage = (imageProps) => (
<ColorMatrix
matrix={concatColorMatrices([saturate(-0.9), contrast(5.2), invert()])}
// alt: matrix={[saturate(-0.9), contrast(5.2), invert()]}
>
<Image {...imageProps} />
</ColorMatrix>
);
Original | BlackAndWhite |
---|---|
CombinedFilters | ColorMatrix |
---|---|
Each filter support all of View
props.
Also some filters have optional value
prop which takes a number
. ColorMatrix
filter
has matrix
prop which takes a Matrix
- an array of 20 numbers. Additionally library exports
functions like grayscale
, tint
etc. - these functions return values of Matrix
type and their
results can be combined with concatColorMatrices
function. If you need to combine several filters,
consider using ColorMatrix
with concatColorMatrices
- generally it is more performant than
corresponding stack of filter components.
Component | Additional props | function |
---|---|---|
ColorMatrix | matrix: Matrix | Array<Matrix> | - |
Normal | - | normal(): Matrix |
RGBA | red: number = 1, green: number = 1, blue: number = 1, alpha: number = 1 | rgba(red: number = 1, green: number = 1, blue: number = 1, alpha: number = 1): Matrix |
Saturate | value: number = 1 | saturate(value: number = 1): Matrix |
HueRotate | value: number = 0 | hueRotate(value: number = 0): Matrix |
LuminanceToAlpha | - | luminanceToAlpha(): Matrix |
Invert | - | invert(): Matrix |
BlackAndWhite | - | blackAndWhite(): Matrix |
Grayscale | value: number = 1 | grayscale(value: number = 1): Matrix |
Sepia | - | sepia(): Matrix |
Nightvision | - | nightvision(): Matrix |
Warm | - | warm(): Matrix |
Cool | - | cool(): Matrix |
Brightness | value: number = 0 | brightness(value: number = 0): Matrix |
Exposure | value: number = 1 | exposure(value: number = 1): Matrix |
Contrast | value: number = 1 | contrast(value: number = 1): Matrix |
Temperature | value: number = 1 | temperature(value: number = 1): Matrix |
Tint | value: number = 0 | tint(value: number = 0): Matrix |
Threshold | value: number = 0 | threshold(value: number = 0): Matrix |
Technicolor | - | technicolor(): Matrix |
Polaroid | - | polaroid(): Matrix |
ToBGR | - | toBGR(): Matrix |
Kodachrome | - | kodachrome(): Matrix |
Browni | - | browni(): Matrix |
Vintage | - | vintage(): Matrix |
Night | value: number = 0.1 | night(value: number = 0.1): Matrix |
Predator | value: number = 1 | predator(value: number = 1): Matrix |
Lsd | - | lsd(): Matrix |
ColorTone | desaturation: number = 0.2, toned: number = 0.15, lightColor: string = "#FFE580", darkColor: string = "#338000" | colorTone(desaturation: number = 0.2, toned: number = 0.15, lightColor: string = "#FFE580", darkColor: string = "#338000"): Matrix |
DuoTone | firstColor: string = "#FFE580", secondColor: string = "#338000" | duoTone(firstColor: string = "#FFE580", secondColor: string = "#338000"): Matrix |
Protanomaly | - | protanomaly(): Matrix |
Deuteranomaly | - | deuteranomaly(): Matrix |
Tritanomaly | - | tritanomaly(): Matrix |
Protanopia | - | protanopia(): Matrix |
Deuteranopia | - | deuteranopia(): Matrix |
Tritanopia | - | tritanopia(): Matrix |
Achromatopsia | - | achromatopsia(): Matrix |
Achromatomaly | - | achromatomaly(): Matrix |
- concatColorMatrices(matrices: Matrix[]): Matrix
- A 4x5 matrix for color transformations represented by array - consult Android docs for more specific info about it's format
- You may check MatrixFilterConstructor example app to play with filters
- This library was tested only with standard
Image
component, but in theory it should work with any image which native part is based onRCTImageView
on iOS orImageView
on Android