当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js GM whiteThreshold()用法及代码示例


whiteThreshold() 函数是 GraphicsMagick 库中的内置函数,用于强制所有高于阈值的像素变为白色,同时保持所有低于阈值的像素不变。该函数返回成功的真实值。

用法:

whiteThreshold( intensity )
whiteThreshold( red, green, blue, opacity )

参数:该函数接受上面提到和下面说明的两种方式的参数:

  • intensity/red:如果仅提及单个参数,则该参数被函数视为强度,否则被视为红色强度。
  • green:该参数用于指定绿色强度。
  • Blue:该参数用于指定蓝色强度。
  • opacity:该参数用于指定不透明度强度。

返回值:该函数返回GraphicsMagick对象。

原图:

示例 1:仅传递一个被视为强度值的参数。

javascript


// Include gm library
const gm = require('gm');
// Import the image
gm('https://media.geeksforgeeks.org/wp-content/uploads/20200308154040/1406-3.png')
// Invoke whiteThreshold function with 0.2 value
.whiteThreshold(.2)
// Process and Write the image
.write("whiteThreshold1.png", function (err) {
  if (!err) console.log('done');
});

输出:

示例 2:提及红色、蓝色和绿色强度。

javascript


// Include gm library
const gm = require('gm');
// Import the image
gm('https://media.geeksforgeeks.org/wp-content/uploads/20200308154040/1406-3.png')
    // Invoke whiteThreshold function
    // with .0001, 0.00001, 12, 0.11
    .whiteThreshold(.0001, 0.00001, 12, 0.11)
    // Process and Write the image
    .write(& quot; whiteThreshold2.png & quot;, function (err) {
        if (!err) console.log('done');
    });

输出:

参考:



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 Node.js GM whiteThreshold() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。