如何在 FabricJS 中使用 IText 更改文本对齐方式到路径?
在本教程中,我们将学习如何在 FabricJS 中使用 IText 更改文本对齐方式到路径。IText 类是在 FabricJS 1.4 版本中引入的,扩展了 fabric.Text,用于创建 IText 实例。IText 实例使我们能够自由选择、剪切、粘贴或添加新文本,而无需额外的配置。此外,还支持各种按键组合和鼠标/触摸组合,使文本具有交互性,而这些功能在 Text 中是不提供的。
但是,基于 IText 的文本框允许我们调整文本矩形的大小并自动换行。这对于 IText 来说是不正确的,因为高度不会根据换行进行调整。我们可以使用各种属性来操作 IText 对象。同样,我们可以使用 pathAlign 属性指定文本对齐到路径的方式。
语法
new fabric.IText( text: String , { pathAlign: String }: Object)
参数
text − 此参数接受一个字符串,即我们希望显示为文本的文本字符串。
options (可选) − 此参数是一个对象,它为我们的 IText 对象提供额外的自定义。使用此参数,可以更改与 IText 对象相关的颜色、光标、笔划宽度和许多其他属性,其中 pathAlign 是一个属性。
选项键
pathAlign − 此属性接受一个字符串值,该值确定每个字符相对于路径的垂直位置。可能的值为“baseline”、“ascender”、“descender”和“center”。默认值为 baseline。下面解释了可能的值
baseline − 将文本的基线放在路径上。
ascender − 将文本放在路径内部。
descender − 将文本放在路径外部。
center − 将文本行放置在路径的中心。
示例 1
pathAlign 属性的默认值
让我们看一个代码示例,了解当我们没有使用pathAlign属性时文本路径是什么样子。这里,“M”命令表示移动,并指示无形的笔移动到点 0,0。“C”命令表示“三次贝塞尔曲线”,它使笔绘制一条贝塞尔曲线。由于我们没有使用 pathAlign 属性,因此将遵循默认的路径对齐方式,即 baseline。
<!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>Default value of path alignment</h2> <p>You can see the default path alignment</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 path instance var path = new fabric.Path("M 0 0 C 100 -100 150 -100 300 0", { strokeWidth: 1, }); // Initiate an itext object var itext = new fabric.IText("Add sample text here.", { width: 300, left: 60, top: 70, fill: "red", path: path, pathSide: "left", pathStartOffset: 0, }); // Add it to the canvas canvas.add(itext); </script> </body> </html>
示例 2
将 pathAlign 属性作为键传递
在此示例中,我们已将 pathAlign 属性作为键传递。由于我们已将值传递为“ascender”,因此每个字符的对齐方式现在将更改。
<!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 pathAlign property as key </h2> <p>You can see that the path alignment has been changed</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 path instance var path = new fabric.Path("M 0 0 C 100 -100 150 -100 300 0", { strokeWidth: 1, }); // Initiate an itext object var itext = new fabric.IText("Add sample text here.", { width: 300, left: 60, top: 70, fill: "red", path: path, pathSide: "left", pathStartOffset: 0, pathAlign: "ascender" }); // Add it to the canvas canvas.add(itext); </script> </body> </html>