如何使用 FabricJS 为文本添加描边?
fabricjsjavascripthtml5 canvas
在本教程中,我们将学习如何使用 FabricJS 为文本添加描边。我们可以通过添加 fabric.Text 实例在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,而且还提供其他功能,例如文本对齐、文本装饰、行高,这些功能可分别通过属性 textAlign、underline 和 lineHeight 获取。我们可以使用 stroke 属性添加描边。
语法
new fabric.Text(text: String, { stroke: String }: Object)
参数
text − 此参数接受 String,即我们想要显示的文本字符串。
options (可选) − 此参数是一个 Object,可为我们的文本提供额外的自定义。使用此参数,可以更改与笔触是属性的对象相关的颜色、光标、笔触宽度和许多其他属性。
选项键
stroke − 此属性接受一个 String,该字符串确定该对象边框的颜色。
示例 1
将笔触属性作为具有十六进制值的键传递
让我们看一个代码示例,以了解使用笔触属性时文本对象如何显示。十六进制颜色代码以 # 开头,后跟代表颜色的六位数字。在本例中,我们使用了"#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> // 启动一个canvas实例 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", }); // 将其添加到画布 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> // 启动一个canvas实例 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)", }); // 将其添加到画布 canvas.add(text); </script> </body> </html>