node-canvas-with-twemoji
v0.1.11
Published
Draw text with Twemoji on node-canvas
Downloads
121
Maintainers
Readme
node-canvas-with-twemoji
This is a module that is able to draw emoji on node-canvas.
Installation
$ npm install node-canvas-with-twemoji
Quick Example
const { createCanvas } = require('canvas');
const { fillTextWithTwemoji } = require('node-canvas-with-twemoji');
async function main () {
const canvas = createCanvas(230, 200);
const context = canvas.getContext('2d');
context.fillStyle = '#000000';
context.font = '30px Arial';
await fillTextWithTwemoji(context, 'canvas😉emoji', 10, 100);
}
main();
Dependencies
Licence
node-canvas-with-twemoji
Copyright (c) 2020-2021 cagpie / Shun Kobayashi [email protected]
Code licensed under the MIT License: http://opensource.org/licenses/MIT