📜  Node.js GM stroke()函数

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

Node.js GM stroke()函数

stroke()函数是 GraphicsMagick 库中的一个内置函数,用于设置用于绘制对象轮廓的笔触的颜色和宽度。

句法:

stroke( color, width )

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

  • color:此参数存储描边的颜色。
  • width:这是一个可选参数,用于存储对象的宽度。

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

原图:

示例 1:

// Include gm library
var gm = require('gm');
  
// Import the image
gm('1.png')
  
// Set stroke color and size
.stroke("#fe1232", 5)
  
// Set fill color
.fill("#56f864")
  
// Draw Circle using drawCircle function
.drawCircle(120, 50, 100, 60).stroke()
  
// Process and Write the image
.write("1a.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)
  
// Process and Write the image
.write("1a.png", function (err) {
    if (!err) console.log('done');
});

输出:

参考:

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