📜  Node.js 通用 drawBezier()函数

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

Node.js 通用 drawBezier()函数

drawBezier()函数是 GraphicsMagick 库中的一个内置函数,用于绘制指定坐标的贝塞尔曲线。该函数在成功时返回真值。

句法:

drawBezier( [x0, y0], ..., [xn, yn] )

参数:此函数接受具有 x 和 y 坐标的点数组。

返回值:此函数返回 GraphicsMagick 对象。

原图:

示例 1:

// Include gm library
var gm = require('gm').subClass({imageMagick: true});
  
// Import the image
gm('1.png')
  
// set the color for the stroke
.stroke("#ffffff")
  
// Invoke Bezier function
.drawBezier([30, 20], [390, 70], [140, 110],
         [45, 56], [98, 45], [123, 65])
  
// Process and write the image 
.write("drawBezier1.png", function (err) {
  if (!err) console.log('done');
});

输出:

示例 2:

// Include gm library
var gm = require('gm');
  
// Import the image
gm(600, 300, 'white')
  
// Set the color for the stroke
.stroke("green", 3)
  
// Set the font 
.font("Helvetica.ttf", 60)
  
// Invoke Bezier function
.drawBezier([30, 20], [390, 70], [140, 110],
     [45, 56], [98, 45], [123, 65], [500, 250])
  
// Call to drawText Function
.drawText(100, 280, "GeeksforGeeks!")
  
// Process and write the image 
.write("drawBezier1.png", function (err) {
  if (!err) console.log('done');
});

输出:

参考:

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