如何使用 gm 更改添加到图像上的文本的字体粗细

How to change font weight of text added on image using gm

我正在使用 gm 在图像上添加文本。现在我想把它设为粗体,但我没有更改字体粗细的选项。感谢任何帮助。

const gm = require('gm').subClass({imageMagick: true});
const imageUrl = 'image_url'
const text = 'Some_text';
const image = gm(`${imageUrl}`)
            .resize(518, 500)
            .fill('#f2f2f2')
            .font('Arial', 14) 
            .drawText(115, 470, `${text}`);
image.write(`result.png`, err => {
  if(err) return console.error(err);
  console.log('done');
});

您可以使用 gm.in() 自定义参数,如下所示

const gm = require('gm').subClass({imageMagick: true});
const imageUrl = 'image_url'
const text = 'Some_text';
const image = gm(`${imageUrl}`)
            .resize(518, 500)
            .fill('#f2f2f2')
            .font('Arial', 14) 
            .in('-weight', 'Bold')
            .drawText(115, 470, `${text}`);
image.write(`result.png`, err => {
  if(err) return console.error(err);
  console.log('done');
});