HTML Canvas - actualBoundingBoxLeft 属性



TextMetrics 界面的 actualBoundingBoxLeft 属性是一个只读方法,它返回一个双精度值,给出 CanvasRenderingContext2D 接口上下文对象的文本基线到在其中渲染文本的边界矩形方框左侧的平行距离。该双精度值以 CSS 像素为单位。

TextMetrics 界面的 actualBoundingBoxRight 属性是一个只读方法,它返回一个双精度值,给出 CanvasRenderingContext2D 接口上下文对象的文本基线到在其中渲染文本的边界矩形方框右侧的平行距离。该双精度值以 CSS 像素为单位。

示例 − (返回值)

以下示例演示 HTML Canvas actualBoundingBoxLeftactualBoundingBoxRight 属性。实现代码如下所示。

<!DOCTYPE html>
<html lang="en">
<head>
   <title>Reference API</title>
   <style>
      body {
         margin: 10px;
         padding: 10px;
      }
   </style>
</head>
<body onload="text();">
   <canvas id="canvas" width="500" height="100" style="border: 1px solid black;"></canvas>
   <script>
      function text() {
         var canvas = document.getElementById("canvas");
         var context = canvas.getContext("2d");
         context.font = '50px Verdana';
         context.fillText('TutorialsPoint', 50, 50);
         var word = context.measureText('TutorialsPoint');
         alert("Bounding box left : " + word.actualBoundingBoxLeft + "\nBounding box right : " + word.actualBoundingBoxRight);
      }
   </script>
</body>
</html>

输出

上述代码在网页上返回的输出如下 −

HTML Canvas ActualBoundingBoxDescent Property HTML Canvas ActualBoundingBoxDescent Property
html_canvas_text.htm
广告