Node.js GM 模糊()函数

原文:https://www.geeksforgeeks.org/node-js-gm-blur-function/

模糊()函数是 GraphicsMagick 库中的一个内置函数,用于给图像添加模糊滤镜。该函数在成功时返回真值。

语法:

blur( radius, sigma )

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

  • 半径:该参数存储模糊半径的值。
  • σ:是存储对象σ的可选参数。

返回值:该函数返回模糊的 Gmagick 图像。

原图:

例 1:

// Include gm library
var gm = require('gm');

// Import the image
gm('gfg.png')

// Invoke Blur function with blur radius as 12
.blur(10)

// Process and Write the image
.write("blur1.png", function (err) {
  if (!err) console.log('done');
});

输出:

例 2:

// Include gm library
var gm = require('gm');

// Import the image
gm('1.png')

// Invoke shear function with 
// xDegrees as 45 and yDegrees as 90
.rotate("#545651", 78)

// Invoke blur function with radius
// as 5 and sigma as 5 
.blur(5, 5)

// Process and Write the image
.write("blur2.png", function (err) {
    if (!err) console.log('done');
});

输出:

参考: