whiteThreshold()函数是GraphicsMagick库中的内置函数,用于强制将阈值以上的所有像素转换为白色,同时使阈值以下的所有像素保持不变。成功时该函数返回真实值。
用法:
whiteThreshold( intensity )
whiteThreshold( red, green, blue, opacity )
参数:该函数以上面提到的和下面描述的两种方式接受参数:
- intensity/red:如果仅提及单个参数,则该参数将被函数视为强度,否则将其视为红色强度。
- 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
相关用法
- Node.js GM transparent()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM resize()用法及代码示例
- Node.js GM drawLine()用法及代码示例
- Node.js GM drawPolygon()用法及代码示例
- Node.js GM modulate()用法及代码示例
- Node.js GM magnify()用法及代码示例
- Node.js GM minify()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM write()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
- Node.js GM enhance()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 Nodejs | GM whiteThreshold() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。