如何使用 FabricJS 更改文本的字体样式?
在本教程中,我们将学习如何使用 FabricJS 更改 Text 对象的字体样式。我们可以通过添加 fabric.Text 的实例在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还提供其他功能,例如文本对齐、文本修饰、行高,这些功能可以通过 textAlign、underline 和 lineHeight 属性分别获得。我们可以使用 fontStyle 属性更改字体样式。
语法
new fabric.Text(text: String, { fontStyle: String }: Object)
参数
text − 此参数接受一个字符串,即我们要显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本提供额外的自定义选项。使用此参数可以更改颜色、光标、边框宽度以及与对象相关的许多其他属性,其中 fontStyle 是一个属性。
选项键
fontStyle − 此属性接受一个字符串,允许我们控制文本的字体样式。可能的值为“normal”、“italic”和“oblique”,如下所述:
normal − 文本显示正常字体样式。这也是默认值。
italic − 文本显示为草书,并向右倾斜。
oblique − 文本显示为正常字体的倾斜版本。它通常看起来类似于斜体,但斜体是字体的特殊版本,而倾斜版本只是稍微倾斜的常规版本。
示例 1
将 fontStyle 属性作为键传递,值为“oblique”
让我们来看一个代码示例,看看当 fontStyle 属性用作键且值为“oblique”时,我们的文本对象是什么样子。
<!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 fontStyle property as key with the value as “oblique”</h2> <p>You can see that the text is oblique</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, fontStyle: "oblique", }); // Add it to the canvas canvas.add(text); </script> </body> </html>
示例 2
将 fontStyle 属性作为键传递,值为“italic”
在此示例中,我们将 fontStyle 属性作为键传递,值为“italic”。这意味着我们的文本对象将以向右倾斜的文本呈现。
<!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 fontStyle property as key with the value as “italic”</h2> <p>You can see that the text is italic</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, fontStyle: "italic", }); // Add it to the canvas canvas.add(text); </script> </body> </html>
广告