Node.js GM threshold()函数
threshold()函数是 GraphicsMagick 库中的一个内置函数,用于修改图像,使得任何大于阈值的像素强度值都被分配最大强度(白色),否则被分配最小强度(黑色)。该函数在成功时返回真值。
句法:
threshold( value, flag )
参数:该函数接受上面提到的两个参数,如下所述:
- value:该参数用于指定阈值的值(可以是百分比)。
- flag:此参数用于指定给定值是否为布尔值。通过设置'true',启用百分比模式。
返回值:此函数返回 GraphicsMagick 对象。
原图:
示例 1:
javascript
// Include gm library
var gm = require('gm');
// Import the image
gm('https://media.geeksforgeeks.org/wp-content/uploads/20200308154040/1406-3.png')
// Invoke threshold function
.threshold(30, true)
// Process and Write the image
.write("threshold1.png", function (err) {
if (!err) console.log('done');
});
javascript
// Include gm library
var gm = require('gm');
//Import the image
gm(600, 300, 'white')
// set the color for the stroke
.stroke("green", 3)
// Set the font
.font("Helvetica.ttf", 60)
//Call to drawText Function
.drawText(100, 280, "GeeksforGeeks!")
// Invoke threshold function
.threshold(30, false)
// Process and write the image
.write("threshold2.png", function (err) {
if (!err) console.log('done');
});
输出:
示例 2:覆盖文件。
javascript
// Include gm library
var gm = require('gm');
//Import the image
gm(600, 300, 'white')
// set the color for the stroke
.stroke("green", 3)
// Set the font
.font("Helvetica.ttf", 60)
//Call to drawText Function
.drawText(100, 280, "GeeksforGeeks!")
// Invoke threshold function
.threshold(30, false)
// Process and write the image
.write("threshold2.png", function (err) {
if (!err) console.log('done');
});
输出:
参考:
- http://www.graphicsmagick.org/GraphicsMagick.html#details-rotate
- https://www.npmjs.com/package/gm