Node.js GM orderedDither()函数
orderedDither()函数是 GraphicsMagick 库中的一个内置函数,用于对图像进行排序抖动。有序抖动方法用于将通道或通道类型参数减少为二进制。 channeltype 的值是 All、Intensity、Red、Green、Blue、Cyan、Magenta、Yellow、Black 和 Opacity。该函数在成功时返回真值。
句法:
orderedDither( ChannelType, NxN )
参数:该函数接受上面提到的两个参数,如下所述:
- ChannelType:此参数用于指定通道类型为 All、Intensity、Red、Green、Blue、Cyan、Magenta、Yellow、Black 和 Opacity。
- NxN:此参数用于指定强度的最小和最大级别。
返回值:此函数返回 GraphicsMagick 对象。
示例 1:
// Include gm library
var gm = require('gm');
// Import the image
gm('1.png')
// Invoke ordered Dither on Green
// Channel with 50 x 60
.orderedDither('Green', '50x60')
// Process and Write the image
.write("orderedDither1.png", function (err) {
if (!err) console.log('done');
});
输出:
示例 2:
// 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 ordered Dither with 'All'
// Channel with 110 x 110
.orderedDither('All', '110x110')
// Process and write the image
.write("ordereddither2.png", function (err) {
if (!err) console.log('done');
});
输出:
参考:
- http://www.graphicsmagick.org/GraphicsMagick.html#details-ordered-dither
- https://www.npmjs.com/package/gm