如何在 Node Jimp 中使用 contrast() 函数调整图像对比度?


NodeJS – contrast() 是一个内置函数,用于调整图像的对比度。它会根据输入值(范围为 -1 到 +1)增加或减少对比度。

语法

contrast(n, cb)

contrast() 参数的定义

  • – 它将接收 n 作为输入来调整图像的对比度,n 的可能值介于 -1 和 +1 之间。

  • cb – 这是一个可选参数,可以在编译完成后调用。

输入图像

使用 Node JIMP – CONTRAST()

在继续使用 contrast() 函数之前,请检查以下语句是否已执行以设置环境。

  • npm init -y // 初始化 Node 环境

  • npm install jimp --save // 安装 jimp 依赖项

  • 创建一个 contrast.js 文件,并将以下代码片段复制粘贴到其中。

  • 使用 node contrast.js 运行代码。

注意:请注意,方法名称应与 JS 文件名匹配。只有这样,它才能调用所需的方法。

示例

const Jimp = require('jimp') ;

async function contrast() { // Function name is same as of file name
   // Reading Image
   const image = await Jimp.read
   ('/home/jimp/tutorials_point_img.jpg');
   image.contrast(.4)
   .write('/home/jimp/contrast.jpg');
}

contrast(); // Calling the function here using async
console.log("Image is processed successfully");

输出

使用 Node JIMP – 带有 'cb' 参数的 Contrast()

示例

const Jimp = require('jimp') ;

async function contrast() {
   // Reading Image
   const image = await Jimp.read
   ('/home/jimp/tutorials_point_img.jpg');
   image.contrast(-0.5, function(err){
      if (err) throw err;
   })
   .write('/home/jimp/contrast.jpg');
}

contrast();
console.log("Image is processed successfully");

输出

更新于: 2021年4月27日

707 次查看

启动您的 职业生涯

通过完成课程获得认证

开始
广告