node . js GM ordereddther()函数

原文:https://www . geesforgeks . org/node-js-GM-ordereddther-function/

ordereddther()函数是 GraphicsMagick 库中的一个内置函数,用于对图像进行有序抖动。有序抖动方法用于将 channel 或 channeltype 参数缩减为二进制。通道类型的值为“全部”、“强度”、“红色”、“绿色”、“蓝色”、“青色”、“洋红色”、“黄色”、“黑色”和“不透明度”。该函数在成功时返回真值。

语法:

orderedDither( ChannelType, NxN )

参数:该函数接受两个参数,如上所述,如下所述:

  • 通道类型:此参数用于将通道类型指定为“全部”、“强度”、“红色”、“绿色”、“蓝色”、“青色”、“洋红色”、“黄色”、“黑色”和“不透明度”。
  • 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');
});

输出:

参考: