如何使用 FabricJS 在画布选择区域的边框上添加虚线?


在本文中,我们将学习如何使用 FabricJS 在画布选择区域的边框上添加虚线。我们可以通过使用 `selectionDashArray` 属性来实现这一点。它允许我们将选择区域的边框设置为虚线。

语法

new fabric.Canvas(element: HTMLElement|String, { selectionDashArray: Array }: Object)

参数

  • element − 此参数是<canvas> 元素本身,可以使用 `document.getElementById()` 或<canvas> 元素的 ID 获取。FabricJS 画布将在此元素上初始化。

  • options (可选) − 此参数是一个对象,它为我们的画布提供额外的自定义选项。使用此参数可以更改画布相关的许多属性,例如颜色、光标、边框宽度等等,其中 `selectionDashArray` 是一个属性。它接受一个数组,该数组决定我们想要的虚线图案。

示例 1

将 `selectionDashArray` 作为类的键传递

`selectionDashArray` 允许我们将选择区域的边框设置为虚线。定义虚线图案的方法是在数组中指定虚线的长度。在下面的示例中,我们使用了 `[7,6]` 数组。这意味着将会有一个 7px 长的线,然后是一个 6px 的间隙,依此类推。

<!DOCTYPE html>
<html>
<head>
   <!-- Adding the Fabric JS Library-->
   <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script>
</head>
<body>
   <h2>Adding dashes to the border of a selection area on a canvas</h2>
   <p>Select an area around the object. The border of the selection area would have dashed lines.</p>
   <canvas id="canvas"></canvas>
   <script>
      // Initiate a canvas instance
      var canvas = new fabric.Canvas("canvas", {
         selectionDashArray: [7, 6],
         selectionBorderColor: "red"
      });
      // Creating an instance of the fabric.Rect class
      var circle = new fabric.Circle({
         left: 200,
         top: 100,
         radius: 40,
         fill: "blue",
      });
      // Adding it to the canvas
      canvas.add(circle);
      canvas.setWidth(document.body.scrollWidth);
      canvas.setHeight(250);
   </script>
</body>
</html>

示例 2

结合使用 `selectionDashArray`、`selectionLineWidth` 和 `selectionBorderColor`

`selectionDashArray` 属性可以以多种方式使用。一种方法是将其与 `selectionLineWidth` 和 `selectionBorderColor` 结合使用,分别指定选择边框的宽度和颜色。

<!DOCTYPE html>
<html>
<head>
   <!-- Adding the Fabric JS Library-->
   <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script>
</head>
<body>
   <h2>Adding dashes to the border of a selection area on a canvas</h2>
   <p>Select an area around the object and observe the outline of the selection area. </p>
   <canvas id="canvas"></canvas>
   <script>
      // Initiate a canvas instance
      var canvas = new fabric.Canvas("canvas", {
         selectionDashArray: [13, 16],
         selectionLineWidth: 5,
         selectionBorderColor: "green",
      });
      // Creating an instance of the fabric.Rect class
      var circle = new fabric.Circle({
         left: 200,
         top: 100,
         radius: 40,
         fill: "blue",
      });
      // Adding it to the canvas
      canvas.add(circle);
      canvas.setWidth(document.body.scrollWidth);
      canvas.setHeight(250);
   </script>
</body>
</html>

更新于:2022年5月19日

387 次浏览

启动你的职业生涯

完成课程获得认证

开始学习
广告
© . All rights reserved.