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');
});
输出:
参考:
- http://www.graphicsmagick.org/GraphicsMagick.html#details-white-threshold
- https://www.npmjs.com/package/gm
相关用法
- Node.js GM whiteThreshold()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM wave()用法及代码示例
- Node.js GM write()用法及代码示例
- Node.js GM swirl()用法及代码示例
- Node.js GM rotate()用法及代码示例
- Node.js GM stroke()用法及代码示例
- Node.js GM shade()用法及代码示例
- Node.js GM trim()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
- Node.js GM drawEllipse()用法及代码示例
- Node.js GM drawArc()用法及代码示例
- Node.js GM drawLine()用法及代码示例
- Node.js GM drawBezier()用法及代码示例
- Node.js GM drawCircle()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
- Node.js GM drawPolygon()用法及代码示例
- Node.js GM flip()用法及代码示例
- Node.js GM flop()用法及代码示例
- Node.js GM border()用法及代码示例
- Node.js GM thumbnail()用法及代码示例
- Node.js GM enhance()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 Node.js GM whiteThreshold() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。