svgcanvas/test/tests/text.js

6 lines
142 B
JavaScript
Raw Normal View History

2021-06-10 20:39:09 +08:00
export default function text(ctx) {
2022-03-09 22:58:22 +08:00
ctx.font = "normal 120px Arial";
ctx.fillStyle = "#000000";
2022-03-09 22:58:22 +08:00
ctx.fillText("Hello", 0, 200);
};