svgcanvas/test/tests/text.js
2021-06-10 20:39:16 +08:00

9 lines
265 B
JavaScript

export default function text(ctx) {
ctx.font = "normal 36px Times";
ctx.fillStyle = "#000000";
ctx.fillText("A Text Example", 50, 50);
ctx.font = "normal 36px Arial";
ctx.strokeStyle = "#000000";
ctx.strokeText("A Text Example", 50, 90);
};