如何使用 FabricJS 为 IText 添加描边?

fabricjsjavascripthtml5 canvas

在本教程中,我们将学习如何使用 FabricJS 为 IText 添加描边。IText 类是在 FabricJS 1.4 版中引入的,它扩展了 fabric.Text 并用于创建 IText 实例。IText 实例让我们可以自由地选择、剪切、粘贴或添加新文本,而无需进行其他配置。还有各种支持的按键组合和鼠标/触摸组合,这些组合使文本具有交互性,而 Text 中没有提供这些功能。

但是,基于 IText 的文本框允许我们调整文本矩形的大小并自动换行。但 IText 并非如此,因为高度不会根据换行进行调整。我们可以使用各种属性来操纵我们的 IText 对象。类似地,我们可以使用 stroke 属性添加描边。

语法

new fabric.IText(text: String, { stroke: String }: Object)

参数

  • text − 此参数接受 String,即我们想要显示的文本字符串。

  • options(可选) − 此参数是一个对象,它为我们的 IText 对象提供额外的自定义。使用此参数,可以更改与笔触是属性的对象相关的颜色、光标、笔触宽度和许多其他属性。

选项键

  • stroke: − 此属性接受一个 String,该字符串确定该对象边框的颜色。

示例 1

将笔触属性作为具有十六进制值的键传递

让我们看一个代码示例,以了解使用笔触属性时我们的 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> // 启动一个canvas实例 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", } ); // 将其添加到画布 canvas.add(itext); </script> </body> </html>

示例 2

将 rgba 值传递给 stroke 属性

在此示例中,我们将了解如何将 rgba 值分配给 stroke 属性。我们可以使用 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> // 启动一个canvas实例 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)", } ); // 将其添加到画布 canvas.add(itext); </script> </body> </html>

相关文章