在本文中,我们将看到如何使用FabricJS设置画布多边形的笔触颜色。画布矩形表示“多边形”是可移动的,可以根据需要进行拉伸。此外,当涉及初始笔触颜色,高度,宽度,填充颜色或笔划宽度时,可以自定义多边形。
方法:
- 为了使其成为可能,我们将使用一个名为FabricJS的JavaScript库。
- 导入库后,我们将在body标签中创建一个canvas块,其中将包含Polygon。
- 此后,我们将初始化FabricJS提供的Canvas和Polygon实例,并使用stroke属性设置Polygon的笔触颜色,并按以下示例中的方式在Canvas上渲染Polygon。
用法:
fabric.Polygon([ { x:pixel, y:pixel }, { x:pixel, y:pixel }, { x:pixel, y:pixel}, { x:pixel, y:pixel}, { x:pixel, y:pixel } ], { stroke:string });
参数:该属性接受上述和以下描述的单个参数:
- stroke:它指定笔触颜色。
以下示例说明了JavaScript中的Fabric.JS多边形笔触:
例:
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 | Polygon stroke 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 polygon instance
var polygon = new fabric.Polygon([
{ x:295, y:10 },
{ x:235, y:198 },
{ x:385, y:78 },
{ x:205, y:78 },
{ x:355, y:198 }], {
fill:'green',
stroke:'blue',
paintFirst:'fill',
});
// Render the polygon in canvas
canvas.add(polygon);
</script>
</body>
</html>
输出:
相关用法
- CSS stroke-width用法及代码示例
- CSS stroke-linecap用法及代码示例
- CSS stroke-opacity用法及代码示例
- CSS stroke-dashoffset用法及代码示例
- CSS stroke-dasharray用法及代码示例
- CSS stroke-linejoin用法及代码示例
- CSS stroke-miterlimit用法及代码示例
- Fabric.js Text stroke属性用法及代码示例
- Fabric.js Circle stroke属性用法及代码示例
- Fabric.js Rect stroke属性用法及代码示例
- Fabric.js Triangle stroke属性用法及代码示例
- Fabric.js Ellipse stroke属性用法及代码示例
- Fabric.js Polyline stroke属性用法及代码示例
- CSS stroke-color属性用法及代码示例
- Fabric.js Textbox stroke属性用法及代码示例
- Fabric.js line stroke属性用法及代码示例
- HTML canvas stroke()用法及代码示例
- p5.js stroke()用法及代码示例
- Node.js GM stroke()用法及代码示例
- SVG stroke-width属性用法及代码示例
- SVG stroke属性用法及代码示例
注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 Fabric.js Polygon stroke Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。