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";
|
2015-06-13 17:06:25 -07:00
|
|
|
ctx.fillStyle = "#000000";
|
2022-03-09 22:58:22 +08:00
|
|
|
ctx.fillText("Hello", 0, 200);
|
2015-06-13 17:06:25 -07:00
|
|
|
};
|