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');
});
输出:
参考:
相关用法
- CSS blur()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- HTML DOM blur()用法及代码示例
- AngularJS ng-blur用法及代码示例
- Python OpenCV cv2.blur()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 Nodejs | GM blur() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。