svg-saturation-filter-matrix
v1.0.1
Published
A function that generates saturation filter matrix for svg element feColorMatrix which simulates filter effect of photoshop.
Downloads
1
Readme
svg-saturation-filter-matrix
A function that generates saturation filter matrix for svg element feColorMatrix which simulates filter effect of photoshop.
install
import svgSaturationFilterMatrix from "svg-saturation-filter-matrix";
how to use
var saturation = 0; // range from -100 to 100, 0 means no saturation shift
console.log(svgSaturationFilterMatrix(saturation));
// `1 0 0 0 0
// 0 1 0 0 0
// 0 0 1 0 0
// 0 0 0 1 0`