HTML5 Canvas - 文本和字体



HTML5 canvas 提供了使用不同的字体和文本属性创建文本的功能,如下所示:

序号 属性和描述
1

font [ = 值 ]

此属性返回当前字体设置,并且可以设置以更改字体。

2

textAlign [ = 值 ]

此属性返回当前文本对齐设置,并且可以设置以更改对齐方式。可能的值包括 start、end、left、right 和 center。

3

textBaseline [ = 值 ]

此属性返回当前基线对齐设置,并且可以设置以更改基线对齐方式。可能的值包括 top、hanging、middle、alphabetic、ideographic 和 bottom。

4

fillText(text, x, y [, maxWidth ] )

此属性使用给定的坐标 x 和 y 在给定位置填充给定的文本。

5

strokeText(text, x, y [, maxWidth ] )

此属性使用给定的坐标 x 和 y 在给定位置描边给定的文本。

示例

以下是一个简单的示例,它使用上述属性来绘制文本:

<!DOCTYPE HTML>

<html>
   <head>
   
      <style>
         #test {
            width: 100px;
            height:100px;
            margin: 0px auto;
         }
      </style>
      
      <script type = "text/javascript">
         function drawShape() {
         
            // get the canvas element using the DOM
            var canvas = document.getElementById('mycanvas');
            
            // Make sure we don't execute when canvas isn't supported
            if (canvas.getContext) {
            
               // use getContext to use the canvas for drawing
               var ctx = canvas.getContext('2d');
               
               ctx.fillStyle = '#00F';
               ctx.font = 'Italic 30px Sans-Serif';
               
               ctx.textBaseline = 'Top';
               ctx.fillText('Hello world!', 40, 100);
               
               ctx.font = 'Bold 30px Sans-Serif';
               ctx.strokeText('Hello world!', 40, 50);
            } else {
               alert('You need Safari or Firefox 1.5+ to see this demo.');
            }
         }
      </script>
   </head>
   
   <body id = "test" onload = "drawShape();">
      <canvas id = "mycanvas"></canvas>
   </body>
   
</html>

以上示例将产生以下结果:

html5_canvas.htm
广告