FabricJS 如何识别给定对象是否属于Polyline实例

FabricJS 如何识别给定对象是否属于Polyline实例

我们可以通过创建一个 fabric.Polyline 的实例来创建一个Polyline对象 一个折线对象可以由一组连接的直线段来描述。由于它是FabricJS的基本元素之一,我们也可以通过应用角度、不透明度等属性来轻松定制它。

为了识别给定对象是否属于Polyline实例,我们使用 isType 方法。该方法检查对象是否属于指定的类型,并根据该类型返回一个真或假的值。

语法

isType(type: String): Boolean

这里, type 是接受一个 字符串 的参数,它指定了我们要检查的类型。

例1:使用isType方法

让我们看一个代码例子,看看使用 isType 方法时的记录输出。 isType 方法返回一个真或假的值,取决于实例的类型是否与我们要检查的类型相匹配。在这种情况下,由于类型匹配,所以返回一个 真值

<!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>Using isType method</h2>
   <p>You can open console from dev tools and see the logged output</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 polyline object
      var polyline = new fabric.Polyline(
         [
            { x: -20, y: -35 },
            { x: 20, y: -35 },
            { x: 40, y: 0 },
            { x: 20, y: 35 },
            { x: -20, y: 35 },
            { x: -40, y: 0 },
         ],
         {
            stroke: "red",
            left: 100,
            top: 50,
            fill: "black",
            strokeWidth: 2,
         }
      );

      // Adding it to the canvas
      canvas.add(polyline);

      // Using isType method
      console.log(
         "Is the specified type identical to a polyline instance? : ",
         polyline.isType("polyline")
      );
   </script>
</body>
</html>

例2:使用isType方法的不同值

在这个例子中,我们使用 isType 来检查指定的圆的类型是否与折线实例相同。在这里,由于它们不相同,所以返回一个假值。

<!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>Using isType method with a different value</h2>
   <p> You can open console from dev tools and see that the logged output contains a false value </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 polyline object
      var polyline = new fabric.Polyline(
         [
            { x: -20, y: -35 },
            { x: 20, y: -35 },
            { x: 40, y: 0 },
            { x: 20, y: 35 },
            { x: -20, y: 35 },
            { x: -40, y: 0 },
         ],
         {
            stroke: "red",
            left: 100,
            top: 50,
            fill: "black",
            strokeWidth: 2,
         } 
      );

      // Adding it to the canvas
      canvas.add(polyline);

      // Using isType method
      console.log(
         "Is the specified type identical to a polyline instance? : ",
         polyline.isType("circle")
      );
   </script>
</body>
</html>

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

FabricJS 教程