svgcanvas/test/tests/text.js

9 lines
265 B
JavaScript
Raw Normal View History

2021-06-10 20:39:09 +08:00
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);
};