Node.js GM recolor()函数
recolor()函数是 GraphicsMagick 库中的一个内置函数,用于将颜色转换矩阵应用于图像通道。该函数在成功时返回真值。
句法:
recolor( matrix )
参数:此函数接受如上所述和如下所述的单个参数:
- Matrix:此参数用于指定值作为矩阵的字符串,该矩阵被解码为颜色变换矩阵。
返回值:此函数返回 GraphicsMagick 对象。
示例 1:
// Include gm library
var gm = require('gm');
// Import the image
gm('1.png')
// Invoke recolor function
.recolor('4 0 0, 0 6 0, 9 0 1')
// Process and Write the image
.write("recolor1.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 recolor function
.recolor('10 0 0, 2 6 0, 9 0 5')
// Process and write the image
.write("recolor2.png", function (err) {
if (!err) console.log('done');
});
输出:
参考:
- http://www.graphicsmagick.org/GraphicsMagick.html#details-recolor
- https://www.npmjs.com/package/gm