如何使用 FabricJS 为文本框添加描边?
在本教程中,我们将学习如何使用 FabricJS 为文本框添加描边。我们可以自定义、拉伸或移动文本框中的文本。为了创建文本框,我们需要创建一个 fabric.Textbox 类的实例并将其添加到画布上。我们的文本框对象可以通过多种方式进行自定义,例如更改其尺寸、添加背景颜色或更改围绕对象绘制的线条的颜色。我们可以使用 stroke 属性来实现这一点。
语法
new fabric.Textbox(text: String, { stroke : String }: Object)
参数
text − 此参数接受一个字符串,即我们希望在文本框内显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本框提供了额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、描边宽度等,其中 stroke 是一个属性。
选项键
stroke − 此属性接受一个字符串,用于确定该对象边框的颜色。
示例 1
使用十六进制值作为 stroke 键
让我们看一个代码示例,了解当使用 stroke 属性时,我们的文本框对象是如何显示的。十六进制颜色代码以 # 开头,后面跟着一个六位数字,表示一种颜色。在本例中,我们使用了“#800000”,它是栗色的颜色。
<!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 as key with a hexadecimal value</h2> <p>You can see that the stroke around the text is of maroon 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 textbox object var textbox = new fabric.Textbox("When nothing goes right, go left!", { backgroundColor: "#e3dac9", width: 400, top: 70, left: 65, fill: "green", stroke: "#800000", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
将 RGBA 值传递给 stroke 属性
在本例中,我们将了解如何将 RGBA 值赋给 stroke 属性。我们可以使用RGBA 值而不是十六进制颜色代码,它代表红色、绿色、蓝色和 alpha。alpha 参数指定颜色的不透明度。
<!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 colour is coming from the RGBA value now</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 textbox object var textbox = new fabric.Textbox("When nothing goes right, go left!", { backgroundColor: "#e3dac9", width: 400, top: 70, left: 65, fill: "green", stroke: "rgb(339,100,27)", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告