如何使用 FabricJS 更改文本框的字体粗细?
在本教程中,我们将了解如何使用 FabricJS 更改文本框的字体粗细。我们可以自定义、拉伸或移动文本框中的文本。为了创建文本框,我们需要创建一个 fabric.Textbox 类的实例并将其添加到画布中。字体粗细指的是决定文本显示为粗体或细体的值。
语法
new fabric.Textbox(text: String, { fontWeight: Number|String }: Object)
参数
text − 此参数接受一个字符串,即我们想要在文本框中显示的文本字符串。
options(可选)− 此参数是一个对象,它为我们的文本框提供额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、描边宽度等等,其中 fontWeight 就是一个属性。
选项键
fontWeight − 此属性接受一个数字或字符串值,用于确定文本框内的文本显示为粗体或细体。其默认值为 normal。
示例 1
使用数值作为 fontWeight 属性的值
让我们看一个代码示例,了解当 fontWeight 属性作为键并使用数值作为值时,我们的文本框对象将如何显示。在本例中,我们将值设置为 400,这意味着我们的文本将具有普通字体。我们也可以使用其他值,例如 600 或 800。
<!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 the fontWeight property as key with a numerical value</h2> <p>You can see that the text is of normal font</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("Solitary trees, if they grow at all, grow strong.", { backgroundColor: "#fff8dc", width: 400, left: 50, top: 70, fill: "#cf3476", fontWeight: 400, }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
示例 2
使用 "bold" 作为 fontWeight 属性的值
在本示例中,我们将 fontWeight 属性作为键,并使用“bold”作为值。这意味着我们的文本框对象将呈现具有较粗字母的文本。
<!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 the fontWeight property as key with the value as “bold”</h2> <p>You can see that the textbox object has been rendered with bold text</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("Solitary trees, if they grow at all, grow strong", { backgroundColor: "#fff8dc", width: 400, left: 50, top: 70, fill: "#cf3476", fontWeight: "bold", }); // Add it to the canvas canvas.add(textbox); </script> </body> </html>
广告