当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Fabric.js Polyline strokeWidth属性用法及代码示例


在本文中,我们将看到如何使用FabricJS设置画布折线的笔触宽度。画布折线表示折线是可移动的,可以根据需要进行拉伸。此外,当涉及初始笔划颜色,高度,宽度,填充颜色或笔划宽度时,可以定制折线。

为了使其成为可能,我们将使用一个名为FabricJS的JavaScript库。导入库后,我们将在body标签中创建一个包含多段线的画布块。此后,我们将初始化FabricJS提供的Canvas和Polyline实例,并分别使用stroke和strokeWidth属性设置Polyline的笔触颜色和笔触宽度,并按以下示例在Canvas上渲染Polyline。

用法:

var polyline = new fabric.Polyline(Points, {  
   strokeWidth:number
});  

参数:该属性接受上述和以下描述的单个参数:

  • strokeWidth:它指定笔划宽度。

下面的示例说明了Fabric.js中的strokeWidth属性:



例:

HTML

<!DOCTYPE html>  
<html>  
    
<head>  
    <!-- Loading the FabricJS library -->
    <script src=  
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">  
    </script>  
</head>  
  
<body>  
  <div style="text-align:center;width:600px;">  
    <h1 style="color:green;">  
        GeeksforGeeks  
    </h1>  
    <b>  
        Fabric.js | Polyline strokeWidth Property  
    </b> 
  </div> 
    
  <canvas id="canvas"
    width="600"
    height="200"
    style="border:1px solid #000000;">  
  </canvas>  
  
  <script>  
  // Initiate a Canvas instance  
  var canvas = new fabric.Canvas("canvas");  
  
  // Initiate a polyline instance  
  var polyline = new fabric.Polyline([  
      { x:200,  
      y:10 },  
      {x:250,  
      y:50  
      }, {  
      x:250,  
      y:180  
      }, {  
      x:150,  
      y:180  
      }, {  
      x:150,  
      y:50  
      }, {  
      x:200,  
      y:10 }], {  
      stroke:'green',   
      strokeWidth:3,   
      fill:'yellow', 
      strokeWidth:3    
      });  
  
      // Render the polyline in canvas  
      canvas.add(polyline);  
  </script>  
</body>  
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 Fabric.js Polyline strokeWidth Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。