Node.js GM blur()函数
blur()函数是 GraphicsMagick 库中的一个内置函数,用于为图像添加模糊滤镜。该函数在成功时返回真值。
句法:
blur( radius, sigma )
参数:此函数接受上面提到的两个参数,如下所述:
- radius:此参数存储模糊半径的值。
- sigma:它是一个可选参数,用于存储对象的 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');
});
输出:
参考:
- http://www.graphicsmagick.org/GraphicsMagick.html#details-blur
- https://www.npmjs.com/package/gm