如何在 FabricJS 中获取包含折线对象的画布的缩放级别?


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

为了找到当前的缩放级别,我们使用getZoom()方法。此方法返回一个表示缩放级别的数字

语法

getZoom(): Number

示例 1:使用 getZoom() 方法

让我们看一个代码示例,说明如何使用getZoom()方法查找包含折线对象的画布的缩放级别。我们将把该值记录到控制台中。对于此示例,我们将记录默认值 1。

<!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 the getZoom() method</h2>
   <p> You can open Console from Dev tools and see the zoom level </p>
   <canvas id="canvas"></canvas>
   <script>
      
      // Initiate a canvas instance
      var canvas = new fabric.Canvas("canvas");
      canvas.setWidth(document.body.scrollWidth);
      canvas.setHeight(250);
      
      // Initiate a polyline instance
      var polyline = new fabric.Polyline(
         [
            { x: 500, y: 20 },
            { x: 550, y: 60 },
            { x: 550, y: 200 },
            { x: 350, y: 200 },
            { x: 350, y: 60 },
         ],
         {
            fill: "white",
            stroke: "blue",
            strokeWidth: 2,
         }
      );
      
      // Add it to the canvas
      canvas.add(polyline);
      
      // Using getZoom() method
      var zoomLevel = canvas.getZoom();
      console.log("Zoom Level: ", zoomLevel);
   </script>
</body>
</html>

示例 2:使用 getZoom() 方法和缩放的折线

让我们看一个代码示例,在这个示例中,我们将使用setZoom()设置缩放,然后使用getZoom()方法获取新的缩放值。我们传递值1.3,这将放大,并在输出中可见,该值也会在控制台中显示为1.3

<!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 the getZoom() method and with a zoomed in polyline</h2>
   <p> You can open Console from Dev tools and see the zoom level </p>
   <canvas id="canvas"></canvas>
   <script>
      
      // Initiate a canvas instance
      var canvas = new fabric.Canvas("canvas");
      canvas.setWidth(document.body.scrollWidth);
      canvas.setHeight(250);
      
      // Initiate a polyline instance
      var polyline = new fabric.Polyline(
         [
            { x: 500, y: 20 },
            { x: 550, y: 60 },
            { x: 550, y: 200 },
            { x: 350, y: 200 },
            { x: 350, y: 60 },
         ],
         {
            fill: "white",
            stroke: "blue",
            strokeWidth: 2,
         }
      );
      
      // Add it to the canvas
      canvas.add(polyline);
      
      // Set the zoom level
      canvas.setZoom(1.3);
      
      // Using getZoom() method
      var zoomLevel = canvas.getZoom();
      console.log("Zoom Level: ", zoomLevel);
   </script>
</body>
</html>

更新于:2023年2月16日

492 次浏览

启动您的职业生涯

完成课程获得认证

开始学习
广告