📜  Node.js GM swirl()函数

📅  最后修改于: 2022-05-13 01:56:30.581000             🧑  作者: Mango

Node.js GM swirl()函数

swirl()函数是 GraphicsMagick 库中的一个内置函数,用于围绕图像的中心。度数指定漩涡的紧密度。

句法:

swirl( angle )

参数:此函数接受上面提到的单个参数,如下所述:

  • 角度:此参数存储漩涡的角度。

返回值:此函数返回 GraphicsMagick 漩涡图像。

原图:

示例 1:

// Include gm library
var gm = require('gm');
  
// Import the image
gm('1.png')
  
// Invoke swirl function with
// an angle values as 45
.swirl(45)
  
// Process and Write the image
.write("swirl1.png", function (err) {
    if (!err) console.log('done');
});

输出:

示例 2:

// Include gm library
var gm = require('gm');
   
// Import the image
gm('1.png')
   
// Set stroke color
.stroke("#fe1232")
   
// Set fill color
.fill("#1200ff")
   
// Draw Rectangle using drawRectangle function
.drawRectangle(10, 2, 130, 30, 1, 2)
   
// Invoke swirl function with
// an angle value as -270 
.swirl(-270)
   
// Process and Write the image
.write("swirl2.png", function (err) {
    if (!err) console.log('done');
});

输出:

参考:

  • http://www.graphicsmagick.org/GraphicsMagick.html#details-swirl
  • https://www.npmjs.com/package/gm