如何使用 FabricJS 调整 IText 中单个字符的基线?
在本教程中,我们将学习如何使用 FabricJS 调整 IText 中单个字符的基线。IText 类是在 FabricJS 1.4 版本中引入的,它扩展了 fabric.Text,并用于创建 IText 实例。IText 实例使我们能够自由地选择、剪切、粘贴或添加新文本,而无需额外的配置。它还支持各种键盘组合和鼠标/触摸组合,使文本具有交互性,而 Text 类则不提供这些功能。
然而,基于 IText 的文本框允许我们调整文本矩形的大小并自动换行。这对于 IText 来说是不正确的,因为高度不会根据换行进行调整。我们可以使用各种属性来操作 IText 对象。同样,我们也可以使用 deltaY 属性来调整单个字符的基线。
语法
new fabric.IText(text: String , { styles: { deltaY: Number }:Object }: Object)
参数
text − 此参数接受一个字符串,表示我们要显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的 IText 对象提供额外的自定义选项。使用此参数,可以更改与对象相关的颜色、光标、边框宽度和许多其他属性,其中 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 only 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 an itext object var itext = new fabric.IText("Add sample text here.", { width: 300, left: 310, top: 70, fill: "#9455da", styles: { 0: { 0: { fontSize: 55, fontWeight: "bold", fontStyle: "oblique", }, }, }, }); // Add it to the canvas canvas.add(itext); </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 second 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 an itext object var itext = new fabric.IText("Add sample text here.
H2O", { width: 300, left: 310, top: 70, fill: "#9455da", 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(itext); </script> </body> </html>