canvas-with-twemoji
Version:
Load emojis on canvas
15 lines (11 loc) • 552 B
JavaScript
const drawTextWithTwemoji = require('./src/drawTextWithTwemoji');
const measureText = require('./src/measureText');
exports.fillTextWithTwemoji = async function (context, text, x, y, options = {}) {
return await drawTextWithTwemoji(context, 'fill', text, x, y, options);
}
exports.strokeTextWithTwemoji = async function (context, text, x, y, options = {}) {
return await drawTextWithTwemoji(context, 'stroke', text, x, y, options);
}
exports.measureText = function (context, text, options = {}) {
return measureText(context, text, options);
}