在本文中,我们将看到如何使用FabricJS禁用画布Ellipse的导出。画布Ellipse表示Ellipse是可移动的,可以根据需要进行拉伸。此外,当涉及初始笔触颜色,高度,宽度,填充颜色或笔触宽度时,可以自定义椭圆。
为了使之成为可能,我们将使用一个名为FabricJS的JavaScript库。导入库后,我们将在body标记中创建一个canvas块,其中将包含Ellipse。此后,我们将初始化FabricJS提供的Canvas和Ellipse实例,并使用excludeFromExport属性禁用canvas Ellipse的canvas点击运动属性,并在画布上呈现Rect,如下所示。
用法:
fabric.Ellipse({ rx:number, ry:number , excludeFromExport:boolean });
参数:该属性接受上述和以下描述的单个参数:
- excludeFromExport:当`true`时,不会以OBJECT /JSON格式导出对象。
下面的示例说明了Fabric.js中的excludeFromExport:
例:
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>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Ellipse excludeFromExport Property
</b>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
</center>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx:80,
ry:40,
cornerDashArray:[5],
excludeFromExport:'false'
});
// Render the Ellipse in canvas
canvas.add(ellipse);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Polygon excludeFromExport属性用法及代码示例
- Fabric.js Polyline excludeFromExport属性用法及代码示例
- Fabric.js Triangle excludeFromExport属性用法及代码示例
- Fabric.js Rect excludeFromExport属性用法及代码示例
- Fabric.js Group excludeFromExport属性用法及代码示例
- Fabric.js Image excludeFromExport属性用法及代码示例
- Fabric.js Path excludeFromExport用法及代码示例
- Fabric.js Ellipse borderOpacityWhenMoving属性用法及代码示例
- Fabric.js Ellipse fill属性用法及代码示例
- Fabric.js Ellipse hasControls属性用法及代码示例
- Fabric.js Ellipse centeredScaling属性用法及代码示例
- Fabric.js Ellipse cornerStrokeColor属性用法及代码示例
- Fabric.js Ellipse cornerStyle属性用法及代码示例
- Fabric.js Ellipse borderDashArray属性用法及代码示例
- Fabric.js Ellipse cornerDashArray属性用法及代码示例
- Fabric.js Ellipse cornerColor属性用法及代码示例
- Fabric.js Ellipse borderColor属性用法及代码示例
- Fabric.js Ellipse centeredRotation属性用法及代码示例
- Fabric.js Ellipse lockScalingFlip属性用法及代码示例
- Fabric.js Ellipse backgroundColor属性用法及代码示例
- Fabric.js Ellipse hasRotatingPoint属性用法及代码示例
- Fabric.js Ellipse left属性用法及代码示例
- Fabric.js Ellipse lockMovementX属性用法及代码示例
- Fabric.js Ellipse lockMovementY属性用法及代码示例
注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 Fabric.js Ellipse excludeFromExport Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。