当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js GM blur()用法及代码示例


blur() 函数是 GraphicsMagick 库中的内置函数,用于向图像添加模糊滤镜。该函数返回成功的真实值。

用法:

blur( radius, sigma )

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

  • radius:该参数存储模糊半径的值。
  • sigma:它是一个可选参数,用于存储对象的西格玛。

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

原图:

示例 1:

javascript


// Include gm library
const 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:

javascript


// Include gm library
const 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');
});

输出:

参考:



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 Node.js GM blur() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。