如何使用 FabricJS 调整文本中单个字符的基线?


在本教程中,我们将学习如何使用 FabricJS 调整文本中单个字符的基线。我们可以通过添加 fabric.Text 的实例来在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还提供其他功能,例如文本对齐、文本装饰、行高,这些功能可以通过 textAlign、underline 和 lineHeight 属性分别获得。类似地,我们还可以使用 deltaY 属性来调整单个字符的基线。

语法

new fabric.Text(text: String , { styles: { deltaY: Number}:Object }: Object)

参数

  • text − 此参数接受一个字符串,即我们要显示的文本字符串。

  • options (可选) − 此参数是一个对象,它为我们的文本提供额外的自定义选项。使用此参数,可以更改与对象相关的许多属性,例如颜色、光标、边框宽度等等,其中 styles 是一个属性。

选项键

  • styles − 此属性接受一个对象值,它允许我们为单个字符添加样式。

  • deltaY − 此属性接受一个数字值,它允许我们仅为样式调整基线。

示例 1

仅将 styles 属性作为键传递

在此示例中,我们可以看到如何使用 styles 属性为字符添加单个样式。正如我们在此示例中看到的,只有第 0 个字符的 fontSize 为 55,fontWeight 为粗体,fontStyle 为“斜体”。第一级属性是行号,第二级属性是字符号。这里我们都使用 0,表示第一行和第一个字符。

<!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 styles property as key</h2> <p>You can see that the first character looks different 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 text object var text = new fabric.Text("Add sample
text here."
, { width: 300, left: 50, top: 70, fill: "green", styles: { 0: { 0: { fontSize: 55, fontWeight: "bold", fontStyle: "oblique", } } } }); // Add it to the canvas canvas.add(text); </script> </body> </html>

示例 2

将 styles 属性作为键以及 deltaY 属性一起传递

在此示例中,我们将看到如何使用 deltaY 属性为字符添加不同的基线。在这种情况下,第一行中的第二个数字(第一个索引)由于指定了 deltaY,因此具有与相邻字符不同的基线。

<!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 styles property as key along with deltaY property</h2> <p> You can see that the second number in the first line has a different baseline </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.
H2O"
, { width: 300, left: 50, top: 70, fill: "green", styles: { 1: { 0: { fontSize: 55, fontWeight: "bold", fill: "red", }, 1: { deltaY: 15, fill: "blue", }, 2: { fontSize: 55, fontWeight: "bold", fill: "red", }, }, }, }); // Add it to the canvas canvas.add(text); </script> </body> </html>

更新于: 2022-09-14

274 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告