在本文中,我們將看到如何使用FabricJS將筆觸添加到文本畫布。畫布意味著書寫的文本是可移動的,可旋轉的,可調整大小的,並且可以拉伸。但是在本文中,我們將添加一個筆畫。此外,文本本身不能像文本框一樣進行編輯。
為了使其成為可能,我們將使用一個名為FabricJS的JavaScript庫。使用CDN導入庫後,我們將在body標簽中創建一個canvas塊,其中將包含我們的文本。之後,我們將初始化FabricJS提供的Canvas和Text實例,並使用stroke屬性添加一個筆觸,並在下麵的示例中提供在Text上呈現Canvas的方法。
用法:
fabric.text(text:string, stroke:string);
參數:該函數接受上述和以下所述的兩個參數:
- text:此參數指定文本。
- stroke:此參數定義筆觸的顏色。
例:本示例使用FabricJS將筆觸添加到文本畫布,如下所示。
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Text stroke Property
</title>
<!-- 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>
Add stroke to canvas-like text with JavaScript
</b>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Create a new instace of Canvas
var canvas = new fabric.Canvas("canvas");
// Create a new Text instance
var text = new fabric.Text('GeeksforGeeks', {
stroke:'green'
});
// Render the text on Canvas
canvas.add(text);
</script>
</center>
</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 Circle stroke屬性用法及代碼示例
- Fabric.js Rect stroke屬性用法及代碼示例
- Fabric.js Triangle stroke屬性用法及代碼示例
- Fabric.js Ellipse stroke屬性用法及代碼示例
- Fabric.js Polyline stroke屬性用法及代碼示例
- CSS stroke-color屬性用法及代碼示例
- HTML canvas stroke()用法及代碼示例
- p5.js stroke()用法及代碼示例
- Node.js GM stroke()用法及代碼示例
- SVG stroke-width屬性用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 Fabric.js | Text stroke Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。