Node.js GM 行程()函数

原文:https://www.geeksforgeeks.org/node-js-gm-stroke-function/

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

语法:

stroke( 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');
});

输出:

例二: 原图: 程序:

// 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');
});

输出:

参考: