📜  Node.js GM whiteThreshold()函数

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

Node.js GM whiteThreshold()函数

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

句法:

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

参数:此函数以上面提到和下面描述的两种方式接受参数:

  • 强度/红色:如果只提到单个参数,则该参数被函数作为强度,否则作为红色强度。
  • green:此参数用于指定绿色强度。
  • blue:此参数用于指定蓝色强度。
  • opacity:此参数用于指定不透明度强度。

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

原始图像

示例 1:仅传递作为强度值的单个参数。

// Include gm library
var 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:提及红色、蓝色、绿色强度。

// Include gm library
var 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("whiteThreshold2.png", function (err) {
  if (!err) console.log('done');
});

输出:

参考:

  • http://www.graphicsmagick.org/GraphicsMagick.html#details-white-threshold
  • https://www.npmjs.com/package/gm