1
0
Fork 0

Updated font size

akairo
loicbersier 5 years ago
parent 928e035497
commit acf2aca52d

@ -38,9 +38,9 @@ class nolightCommand extends Command {
}); });
const bg = await loadImage(buffer); const bg = await loadImage(buffer);
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height); ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
ctx.font = '70px ubuntu'; ctx.font = '15px ubuntu';
ctx.fillStyle = '#FFFFFF'; ctx.fillStyle = '#FFFFFF';
ctx.fillText(text, canvas.width / 10, canvas.height / 9); ctx.fillText(text, 10, 20);
fs.writeFile('./img/frame001.png', canvas.toBuffer(), function (err) { fs.writeFile('./img/frame001.png', canvas.toBuffer(), function (err) {
if (err) { if (err) {
@ -62,4 +62,4 @@ class nolightCommand extends Command {
} }
} }
module.exports = nolightCommand; module.exports = nolightCommand;

Loading…
Cancel
Save