blob: ae72e4071bde829c119b85b2dc7131bdd3638f93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<script>
function load() {
var ctx = document.getElementById("canvas").getContext("2d");
ctx.font = "bold 12px sans-serif";
ctx.scale(4, 4);
var str = "HeHeHeHe";
ctx.fillText(str, 0, 15);
}
</script>
<body onload="load();">
<canvas id="canvas" width="400" height="200"></canvas>
</body>
</html>
|