📜  节点吉普 |褪色

📅  最后修改于: 2022-05-13 01:56:54.398000             🧑  作者: Mango

节点吉普 |褪色

介绍
fade()函数是 Nodejs 中的内置函数| Jimp 以 0 到 1 之间的因子淡化每个像素。
句法:

fade(f, cb)

范围:

  • f – 此参数存储使图像透明的值。它的范围为 0 到 1。1 将使图像完全透明。
  • cb – 这是编译完成时调用的可选参数。

输入图像:

第一步:搭建环境

npm init -y

第 2 步:安装jimp

npm install jimp --save

示例 1:

javascript
// 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
  ('https://media.geeksforgeeks.org/wp-content/uploads/20190328185307/gfg28.png');
// fade function
  image.fade(.5)
  .write('fade1.png');
}
 
main();
  console.log("Image Processing Completed");


javascript
// 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
  ('https://media.geeksforgeeks.org/wp-content/uploads/20190328185333/gfg111.png');
// fade function using callback function
  image.fade(0.8, function(err){
    if (err) throw err;
  })
  .write('fade2.png');
}
 
main();
  console.log("Image Processing Completed");


输出:

示例 2:使用 f 和 cb(可选参数)

javascript

// 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
  ('https://media.geeksforgeeks.org/wp-content/uploads/20190328185333/gfg111.png');
// fade function using callback function
  image.fade(0.8, function(err){
    if (err) throw err;
  })
  .write('fade2.png');
}
 
main();
  console.log("Image Processing Completed");

输出:

参考: https://www.npmjs.com/package/jimp