如何使用FabricJS将仅选定的多段线组合成单个对象?


我们可以通过创建fabric.Polyline的实例来创建一个多段线对象。多段线对象可以由一组连接的直线段来表征。由于它是FabricJS的基本元素之一,我们也可以通过应用角度、不透明度等属性来轻松定制它。为了对多个多段线对象进行分组,我们可以使用toGroup()方法。

语法

toGroup(): Fabric.Group

示例1:创建fabric.Polyline()的实例并将其添加到我们的画布

在了解如何将多个对象组合成一个对象之前,让我们先看一个代码示例,说明如何将多段线对象添加到我们的画布中。唯一需要的参数是points数组,而第二个参数是可选的options对象。

<!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> Creating an instance of fabric.Polyline() and adding it to our canvas </h2>
   <p>You can see that the polyline object has been added</p>
   <canvas id="canvas"></canvas>
   <script>
      
      // Initiate a canvas instance
      var canvas = new fabric.Canvas("canvas");
      canvas.setWidth(document.body.scrollWidth);
      canvas.setHeight(250);
      
      // Initiating a points array
      var points = [
         { x: 30, y: 50 },
         { x: 0, y: 0 },
         { x: 60, y: 0 },
      ];
      
      // Initiating a polyline object
      var polyline = new fabric.Polyline(points, {
         left: 100,
         top: 40,
         fill: "white",
         strokeWidth: 4,
         stroke: "green",
      });
      
      // Adding it to the canvas
      canvas.add(polyline);
   </script>
</body>
</html>

示例2:一键分组仅选定的多段线

在这个例子中,我们将有一个按钮,点击该按钮后,选定的多段线将被组合成一个单一的对象。因此,移动该对象将移动所有分组的多段线,并且在调整大小或倾斜时,它也将表现为单个对象。

我们将创建一个函数,该函数获取画布中所有选定的对象并将它们组合成一个单一的对象。

<!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>Grouping only selected Polyline objects using one click</h2>
   <p> Select the polylines by dragging on required area and click on the`Group` Button to group all the selected Polyline objects in the canvas </p>
   <canvas id="canvas"></canvas>
   <button type="button" onclick="group()">Group</button>
   <script>
      
      // Initiate a canvas instance
      var canvas = new fabric.Canvas("canvas");
      canvas.setWidth(document.body.scrollWidth);
      canvas.setHeight(250);
      
      // Initiate a Polyline object
      var polyLine1 = new fabric.Polyline([
         { x: 500, y: 200 },
         { x: 550, y: 60 },
         { x: 350, y: 100 },
      ], {
         stroke: "green",
         fill: "white",
         strokeWidth: 5,
      });

      // Initiate another Polyline object
      var polyLine2 = new fabric.Polyline([
         { x: 300, y: 100 },
         { x: 150, y: 60 },
         { x: 250, y: 10 },
      ], {
         stroke: "green",
         fill: "white",
         strokeWidth: 5,
      });

      // Initiate another Polyline object
      var polyLine3 = new fabric.Polyline([
         { x: 400, y: 200 },
         { x: 250, y: 160 },
         { x: 150, y: 200 },
      ], {
         stroke: "green",
         fill: "white",
         strokeWidth: 5,
      });
      
      // Add them to the canvas instance
      canvas.add(polyLine1);
      canvas.add(polyLine2);
      canvas.add(polyLine3);

      // Function to group the selected polyline objects into single object
      function group() {
         canvas.getActiveObject().toGroup();
      }
   </script>
</body>
</html>

更新于:2023年2月16日

228 次浏览

启动您的职业生涯

完成课程后获得认证

开始
广告
© . All rights reserved.