Node Jimp | Color shade
Introduction
The tint modifier is an inbuilt color modifier in Nodejs | Jimp which mixes black color to the image.
Syntax:
image.color([ { apply: 'shade', params: value } ]);
Parameter:
- value – This parameter stores the amount of tint to be applied.
Input Images:
Example 1:
// npm install --save jimp // import jimp library to the environment var Jimp = require( 'jimp' ); // User-Defined Function to read the images async function main() { const image = await Jimp.read // color function having shade modifier image.color([{apply: 'shade' , params: [60]}]) .write( 'sahde1.png' ); } main(); console.log( "Image Processing Completed" ); |
chevron_right
filter_none
Output:
Example 2: cb (optional parameters)
// npm install --save jimp // import jimp library to the environment var Jimp = require( 'jimp' ); // User-Defined Function to read the images async function main() { const image = await Jimp.read // color function having shade modifier image.color([{apply: 'shade' , params: [30]}], function (err){ if (err) throw err; }) .write( 'shade2.png' ); } main(); console.log( "Image Processing Completed" ); |
chevron_right
filter_none
Output:
Reference: https://www.npmjs.com/package/jimp