📜  Node.js 通用 drawArc()函数

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

Node.js 通用 drawArc()函数

drawArc()函数是 GraphicsMagick 库中的一个内置函数,用于绘制具有指定坐标的圆弧。该函数在成功时返回真值。

句法:

drawArc( x0, y0, x1, y1, r0, r1 )

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

  • x0:该参数存储初始点的x坐标值。
  • y0:该参数存储初始点的y坐标值。
  • x1:该参数存储终点的x坐标值。
  • y1:此参数存储终点的y坐标值。
  • r0:此参数以度为单位取旋转起始角度的值。
  • r1:此参数以度为单位取旋转结束角度的值。

返回值:此函数返回 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 drawArc function with x0, y0, x1, y1, r0, r1
.drawArc(30, 20, 390, 70, 140, 110)
  
// Process and write the image 
.write("drawArc1.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 drawArc function with x0, y0, x1, y1, r0, r1
.drawArc(30, 20, 390, 110, 240, 210)
  
// Call to drawText Function
.drawText(100, 280, "GeeksforGeeks!")
  
// Process and write the image 
.write("drawArc1.png", function (err) {
  if (!err) console.log('done');
});

输出:

参考:

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