Javascript代码显示文本

时间:2012-07-08 20:59:24

标签: javascript text canvas

有一个带有直线的矩形代码,我想在矩形下面显示文字。如何将其添加到我的代码中?或者有人能指出我正确的方向吗?

<canvas id="main" width="300" height="300"></canvas>

 <script>
 var canvas = document.getElementById("main");
var context = canvas.getContext('2d');
context.fillStyle = "#008000";
context.rect(0,0,300,300);
context.fill();
context.beginPath();
context.lineWidth = 10;
context.strokeStyle = "blue";
context.lineCap = "round";
context.moveTo( 50, 150);
context.lineTo (250, 150);
context.stroke();
  context.closePath();

2 个答案:

答案 0 :(得分:1)

您可以使用fillText绘制文字:

context.fillText("Hello, world!", 50, 50);

有关详细信息,请参阅this article on the Mozilla Developer Network

答案 1 :(得分:0)

我相信你想要fillText功能:

context.font="30px Arial";
context.fillText("Hello World",10,50);