在本文中,我們將看到如何使用 FabricJS 在畫布 Circle 中使用 toString() 方法獲取圓形對象實例的字符串表示,它用於填充對象。 canvas Circle 表示 Circle 是可移動的,可以根據需要進行拉伸。此外,當涉及到初始筆畫顏色、高度、寬度、填充顏色或筆畫寬度時,可以自定義圓形。
toString() 方法用於獲取圓形對象實例的字符串表示。
方法:首先導入fabric.js庫。導入庫後,在 body 標簽中創建一個包含圓形的畫布塊。之後,初始化 Fabric.JS 提供的 Canvas 和 Circle 類的實例,並使用 toString() 方法。
用法:
circle.toString()
參數:這個函數不接受任何參數。
返回值:此方法返回包含圓形對象實例的字符串表示的對象值。
示例:本示例使用 FabricJS 設置畫布圓的 toString() 方法,如下例所示:
HTML
<!DOCTYPE html>
<html>
<head>
<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>
<h3>
Fabric.js Circle toString() method
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
var canvas = new fabric.Canvas("canvas");
var circle = new fabric.Circle({
radius:100,
fill:'blue',
stroke:'green',
strokeWidth:3,
angle:90
});
canvas.add(circle);
canvas.centerObject(circle);
console.log(circle.toString())
</script>
</body>
</html>
輸出:
參考:http://fabricjs.com/docs/fabric.Circle.html#toString
相關用法
- Javascript RegExp toString()用法及代碼示例
- JavaScript Array toString()用法及代碼示例
- JavaScript Boolean toString()用法及代碼示例
- Javascript date.toString()用法及代碼示例
- Javascript string.toString()用法及代碼示例
- Node.js Buffer.toString()用法及代碼示例
- JavaScript BigInt.prototype.toString()用法及代碼示例
- JavaScript Error.prototype.toString()用法及代碼示例
- Node.js url.toString()用法及代碼示例
- Typescript Array toString()用法及代碼示例
- Typescript String toString()用法及代碼示例
- Node.js urlSearchParams.toString()用法及代碼示例
- HTML DOM Range toString()用法及代碼示例
- Lodash _.toString()用法及代碼示例
- Node.js x509.toString()用法及代碼示例
- Fabric.js ActiveSelection toString()用法及代碼示例
- Javascript toString()用法及代碼示例
- Javascript typedArray.toString()用法及代碼示例
- Javascript symbol.toString()用法及代碼示例
- d3.js color.toString()用法及代碼示例
- Typescript toString()用法及代碼示例
- d3.js path.toString()用法及代碼示例
注:本文由純淨天空篩選整理自dheerchanana08大神的英文原創作品 Fabric.js Circle toString() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。