Node Jimp | sepia
Introduction
The sepia() function is an inbuilt function in Nodejs | Jimp which applies a sepia tone/wash to the image.
Syntax:
sepia(cb)
Parameter:
- cb – This is an optional parameter which is invoked when compilation is complete.
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 // fade function image.sepia() .write('sepia1.png'); } main(); console.log("Image Processing Completed"); |
chevron_right
filter_none
Output:

Example 2: With 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 // fade function using callback function image.sepia(function(err){ if (err) throw err; }) .write('sepia2.png'); } main(); console.log("Image Processing Completed"); |
chevron_right
filter_none
Output:

Reference: https://www.npmjs.com/package/jimp
Recommended Posts:
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



