FabricJS – 移除转换为HTMLCanvasElement的多边形的阴影

FabricJS – 移除转换为HTMLCanvasElement的多边形的阴影

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

为了将多边形对象转换成HTMLCanvasElement,我们使用toCanvasElement方法。它返回的DOM元素类型为HTMLCanvasElement,这个接口从HTMLElement接口继承其属性和方法。我们使用withoutShadow属性来消除转换为HTMLCanvasElement的Polygon的阴影。

语法

toCanvasElement({ withoutShadow: Boolean }: Object):
HTMLCanvasElement

参数

  • options (option) – 这个参数接受一个对象,为我们的HTMLCanvasElement提供额外的自定义功能。使用这个参数可以改变HTMLCanvasElement的高度、左侧作物偏移和许多其他属性,而withoutShadow是该元素的一个属性。

选项键

  • withoutShadow – 这个属性接受一个布尔值,它决定了当前对象的阴影是否要被移除。这个属性是可选的。

例子1:使用withoutShadow属性并给它传递一个 “false “值

让我们看一个代码例子,看看当toCanvasElement方法和withoutShadow属性一起使用时的记录输出。当传递给它一个’false’值时,withoutShadow属性会保留任何存在的物体阴影。因此,在这种情况下,阴影将存在于其输出的图像中。我们使用toDataURL方法与toCanvasElement方法同步,以显示输出图像的实际外观。

<!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 withoutShadow property and passing it a ‘false’ value</h2>
   <p>
      You can open console from dev tools, copy the url string and paste it in a new tab to see that the polygon object's image contains shadow
   </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 shadow object
      var shadow = new fabric.Shadow({
         color: "black",
         blur: 12,
      });

      // 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,
            shadow: shadow,
         }
      );

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

      // Using toCanvasElement method
      var withoutShadow = polygon.toCanvasElement({
         withoutShadow: false,
      });

      // Using toDataURL method
      console.log(withoutShadow.toDataURL());
   </script>
</body>
</html> 

例子2:使用withoutShadow属性并传递给它一个 “true “值

让我们看一个代码例子,看看当toCanvasElement方法与withoutShadow属性一起使用时的记录输出。当传递给它一个’true’的值时,withoutShadow属性将摆脱阴影。因此,在这种情况下,阴影将在其输出图像中被移除。

<!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 withoutShadow property and passing it a ‘true’ value</h2>
   <p>
      You can open console from dev tools, copy the url string and paste it in a new tab to see that the polygon object's image does not contain shadow
   </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 shadow object
      var shadow = new fabric.Shadow({
         color: "black",
         blur: 12,
      });

      // 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,
            shadow: shadow,
         }
      );

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

      // Using toCanvasElement method
      var withoutShadow = polygon.toCanvasElement({
         withoutShadow: true,
      });

      // Using toDataURL method
      console.log(withoutShadow.toDataURL());
   </script>
</body>
</html> 

结论

在本教程中,我们用两个简单的例子来演示如何使用FabricJS去除转换为HTMLCanvasElement的多边形的阴影。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

FabricJS 教程