FabricJS – 将多边形对象转换为HTMLCanvasElement后如何获取data URL?


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

为了将多边形对象转换为HTMLCanvasElement,我们使用toCanvasElement方法。它返回HTMLCanvasElement类型的DOM元素,这是一个接口,它继承了HTMLElement接口的属性和方法。我们使用toDataURL方法来查找图像的data-URL样式表示。返回图像的格式为指定的类型或默认的png,分辨率为96dpi。

语法

HTMLCanvasElement.toDataURL()

示例1:使用toCanvasElement方法

让我们来看一个代码示例,看看使用toCanvasElement方法时记录的输出。使用toCanvasElement方法时,将返回HTMLCanvasElement类型的DOM元素。HTMLCanvasElement接口提供了各种方法和属性来更改画布的显示效果。它继承了HTMLElement接口的属性和方法。您可以从开发者工具中打开控制台,查看正在返回HTMLCanvasElement类型的DOM元素。

<!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 toCanvasElement method</h2> 
   <p>You can open console from dev tools to 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);
      
      // Initiate a polygon object
      var polygon = new fabric.Polygon(
         [
            { x: 600, y: 310 },
            { x: 650, y: 450 },
            { x: 600, y: 480 },
            { x: 550, y: 480 },
            { x: 450, y: 460 },
            { x: 300, y: 210 },
         ],
         {
            fill: "#778899",
            stroke: "blue",
            strokeWidth: 5,
            top: 50,
            left: 100,
            scaleX: 0.5,
            scaleY: 0.5,
         }
      );
      
      // Adding it to the canvas
      canvas.add(polygon);
      
      // Using toCanvasElement method
      console.log(
         "The output on using toCanvasElement method is:",
         polygon.toCanvasElement()
      );
   </script>
</body>
</html>

示例2:使用toDataURL方法

让我们来看一个代码示例,看看使用toDataURL方法以及toCanvasElement方法来查找转换为HTMLCanvasElement的多边形对象的图像的data-URL字符串时记录的输出。我们可以复制该URL并将其粘贴到新标签页的地址栏中以查看最终输出。由于我们已将格式指定为“jpeg”,因此图像将为jpeg格式。

<!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 toDataURL method</h2>
   <p>
      You can open console from dev tools to see that the data like URL string of the image is being returned
   </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 polygon object
      var polygon = new fabric.Polygon(
         [ 
            { x: 600, y: 310 },
            { x: 650, y: 450 },
            { x: 600, y: 480 },
            { x: 550, y: 480 },
            { x: 450, y: 460 },
            { x: 300, y: 210 },
         ],
         {
            fill: "#778899",
            stroke: "blue",
            strokeWidth: 5,
            top: 50,
            left: 100,
            scaleX: 0.5,
            scaleY: 0.5,
         }
      );
      
      // Adding it to the canvas
      canvas.add(polygon);
      
      // Using toCanvasElement method
      var polygonCanvas = polygon.toCanvasElement({
         width: 200,
      });
      
      // Using toDataURL method
      console.log(
         "The data-URL is as follows:",
         polygonCanvas.toDataURL({ format: "jpeg" })
      );
   </script>
</body>
</html>

结论

在本教程中,我们使用两个简单的示例演示了如何使用FabricJS在将多边形对象转换为HTMLCanvasElement后查找data URL。

更新于:2022年12月29日

432 次浏览

启动您的职业生涯

完成课程获得认证

开始学习
广告