svgcanvas/test/tests/text.js
2022-03-09 22:58:22 +08:00

6 lines
142 B
JavaScript

export default function text(ctx) {
ctx.font = "normal 120px Arial";
ctx.fillStyle = "#000000";
ctx.fillText("Hello", 0, 200);
};