在本文中,我们将了解如何设置均匀的笔划宽度图像。 canvas图像是用于创建图像实例的fabric.js类之一。画布图像表示图像是可移动的,可以根据需要进行拉伸。 strokeUniform用于锁定均匀笔划。
用法: 参数:此函数采用上述和以下描述的单个参数: 例:此示例使用FabricJS设置画布图像的strokeUniform属性,如下例所示: 输出:fabric.Image(image, {
strokeUniform:boolean
});
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Image strokeUniform Property
</b>
<canvas id="canvas" width="400" height="300"
style="border:2px solid #000000">
</canvas>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
width="100" height="100" id="my-image"
style="display:none;">
<br>
<script>
// Creating the instance of canvas object
var canvas = new fabric.Canvas("canvas");
// Getting the image
var img = document.getElementById('my-image');
// Creating the image instance
var geeks = new fabric.Image(img, {
stroke:"green",
strokeUniform:false
});
canvas.add(geeks);
canvas.centerObject(geeks);
</script>
</body>
</html>
相关用法
- Fabric.js Ellipse strokeUniform属性用法及代码示例
- Fabric.js Rect strokeUniform属性用法及代码示例
- Fabric.js Polygon strokeUniform属性用法及代码示例
- Fabric.js Textbox strokeUniform属性用法及代码示例
- Fabric.js Path strokeUniform用法及代码示例
- Fabric.js Circle strokeUniform属性用法及代码示例
- Fabric.js Group strokeUniform属性用法及代码示例
- CSS list-style-image用法及代码示例
- CSS border-image-slice用法及代码示例
- CSS border-image-outset用法及代码示例
- CSS border-image-repeat用法及代码示例
- CSS border-image用法及代码示例
- CSS border-image-width用法及代码示例
- CSS background-image用法及代码示例
- CSS border-image-source用法及代码示例
- HTML Input Image src用法及代码示例
- HTML Input Image width用法及代码示例
- HTML Input Image type用法及代码示例
- HTML Input Image name用法及代码示例
注:本文由纯净天空筛选整理自dheerchanana08大神的英文原创作品 Fabric.js Image strokeUniform Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。