Canvas Text

Paint Text on Canvas

by Denise Nepraunig

HTML

<canvas id="myCanvas" width="500" height="500" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>

JavaScript

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.font="20px Courier New bold";
//ctx.fillText("Hello World!",10,50);

var de = "acht";
var fr = "huit";
ctx.fillText(de,10,20);
ctx.textBaseline = "middle"; 

var fr_split = fr.split("");
console.log(fr_split);

for(var i = 0; i < fr_split.length; i++) {
    var x = Math.random() * 400 + 50;
    var y = Math.random() * 400 + 50;
    ctx.fillText(fr_split[i],x,y);
}