📜  Node.js GM wave()函数

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

Node.js GM wave()函数

wave()函数是 GraphicsMagick 库中的一个内置函数,用于随正弦波一起改变图像。该函数在成功时返回真值。

句法:

wave( amplitude, wavelength )

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

  • 幅度:此参数存储正弦波的幅度值。
  • 波长:该参数存储正弦波的波长值。

返回值:此函数返回添加了图像的 GraphicsMagick 对象。

原图:

示例 1:

// Include gm library
var gm = require('gm');
  
// Import the image
gm('gfg.png')
  
// Invoke wave function with an amplitude
// values as 10 and wavelength as 3
.wave(10, 3)
  
// Process and Write the image
.write("wave1.png", function (err) {
  if (!err) console.log('done');
});

输出:

示例 2:

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

输出:

参考:

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