如何使用 FabricJS 为文本添加描边?


在本教程中,我们将学习如何使用 FabricJS 为文本添加描边。我们可以通过添加 fabric.Text 的实例来在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还提供其他功能,例如文本对齐、文本修饰、行高,分别可以通过 textAlign、underline 和 lineHeight 属性获得。我们可以使用 stroke 属性添加描边。

语法

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

参数

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

  • options (可选) − 此参数是一个对象,它为我们的文本提供额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、描边宽度等,其中描边是属性之一。

选项键

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

示例 1

将 stroke 属性作为键传递,并使用十六进制值

让我们来看一个代码示例,了解当使用 stroke 属性时我们的文本对象是如何显示的。十六进制颜色代码以 # 开头,后跟六位数字,表示一种颜色。在本例中,我们使用了“#ffc0cb”,即粉红色。

<!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 pink 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 a text object var text = new fabric.Text("Add Sample Text Here", { top: 70, left: 50, fontStyle: "bold", fill: "black", stroke: "#ffc0cb", }); // Add it to the canvas canvas.add(text); </script> </body> </html>

示例 2

将 rgba 值传递给 stroke 属性

在本例中,我们将了解如何将 rgba 值分配给 stroke 属性。我们可以使用 RGBA 值代替十六进制颜色代码,它代表:红色、绿色、蓝色和 alpha。alpha 参数指定颜色的不透明度。在本例中,我们传递了 rgba 值 (0,128,0,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 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 a text object var text = new fabric.Text("Add Sample Text Here", { top: 70, left: 50, fontStyle: "bold", fill: "black", stroke: "rgba(0,128,0,1)", }); // Add it to the canvas canvas.add(text); </script> </body> </html>

更新于: 2022年9月13日

213 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告