如何使用 FabricJS 更改文本的字体粗细?
在本教程中,我们将学习如何使用 FabricJS 更改文本的字体粗细。我们可以通过添加 fabric.Text 实例来在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还提供其他功能,例如文本对齐、文本修饰、行高,这些功能分别可以通过 textAlign、underline 和 lineHeight 属性获得。字体粗细指的是决定文本显示粗细的数值。
语法
new fabric.Text(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 text object var text = new fabric.Text("Add sample text here", { left: 50, top: 70, fontWeight: 400, }); // Add it to the canvas canvas.add(text); </script> </body> </html>
示例 2
将 fontWeight 属性作为键,并使用“bold”作为值
在此示例中,我们将 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 text 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 text object var text = new fabric.Text("Add sample text here", { left: 50, top: 70, fontWeight: “bold”, }); // Add it to the canvas canvas.add(text); </script> </body> </html>
广告