如何在 FabricJS 中为 IText 添加描边?
在本教程中,我们将学习如何在 FabricJS 中为 IText 添加描边。IText 类在 FabricJS 1.4 版本中引入,继承自 fabric.Text,用于创建 IText 实例。IText 实例使我们可以自由地选择、剪切、粘贴或添加新文本,无需额外的配置。它还支持各种键盘组合和鼠标/触摸组合,使文本具有交互性,而 Text 类则不具备这些功能。
然而,基于 IText 的文本框允许我们调整文本矩形的尺寸并自动换行。这对于 IText 来说并不适用,因为高度不会根据换行进行调整。我们可以使用各种属性来操作 IText 对象。同样,我们可以使用 stroke 属性添加描边。
语法
new fabric.IText(text: String, { stroke: String }: Object)
参数
text − 此参数接受一个字符串,即我们要显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的 IText 对象提供额外的自定义选项。使用此参数可以更改与对象相关的颜色、光标、描边宽度以及许多其他属性,其中描边是一个属性。
选项键
stroke: − 此属性接受一个字符串,它确定该对象边框的颜色。
示例 1
使用十六进制值作为 stroke 属性键
让我们来看一个代码示例,了解当使用 stroke 属性时 IText 对象的外观。十六进制颜色代码以 # 开头,后面跟着六位数字,表示一种颜色。在本例中,我们使用了“#097969”,它是绿色。
<!DOCTYPE html> <html> <head> <!-- Adding the Fabric JS Library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>Passing stroke property as key with a hexadecimal value</h2> <p>You can see that the stroke around the text is of green colour</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate an itext object var itext = new fabric.IText( "Add sample text here.
Lorem ipsum dolor sit amet
consectetur adipiscing.",{ width: 300, left: 50, top: 70, fill: "white", stroke: "#097969", } ); // Add it to the canvas canvas.add(itext); </script> </body> </html>
示例 2
将 rgba 值传递给 stroke 属性
在本例中,我们将看到如何为 stroke 属性赋值 rgba 值。我们可以使用RGBA值代替十六进制颜色代码,它代表:红色、绿色、蓝色和 alpha。alpha 参数指定颜色的不透明度。在本例中,我们传递了 rgba 值为 rgba(255,11,15,1),它是红色,不透明度为 1。
<!DOCTYPE html> <html> <head> <!-- Adding the Fabric JS Library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>Passing an rgba value to the stroke property</h2> <p>You can see that the stroke around the text is of red colour</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate an itext object var itext = new fabric.IText( "Add sample text here.
Lorem ipsum dolor sit amet
consectetur adipiscing.",{ width: 300, left: 50, top: 70, fill: "white", stroke: "rgba(255,11,15,1)", } ); // Add it to the canvas canvas.add(itext); </script> </body> </html>
广告