如何使用 FabricJS 在 IText 中设置路径边?

fabricjsjavascripthtml5 canvas

在本教程中,我们将学习如何使用 FabricJS 在 IText 中设置路径边。IText 类是在 FabricJS 版本 1.4 中引入的,扩展了 fabric.Text 并用于创建 IText 实例。IText 实例让我们可以自由地选择、剪切、粘贴或添加新文本,而无需额外的配置。还有各种支持的按键组合和鼠标/触摸组合,这些组合使文本具有交互性,而 Text 中没有提供这些功能。

但是,基于 IText 的文本框允许我们调整文本矩形的大小并自动换行。但 IText 并非如此,因为高度不会根据换行进行调整。我们可以使用各种属性来操纵我们的 IText 对象。同样,我们可以使用 pathSide 属性为文本指定路径侧。

语法

new fabric.IText( text: String , { pathSide: String }: Object)

参数

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

  • options (可选) − 此参数是一个对象,它为我们的 IText 对象提供额外的自定义。使用此参数,可以更改与 IText 对象(pathSide 是其属性)相关的颜色、光标、描边宽度和许多其他属性。

选项键

  • pathSide − 此属性接受 String 值,该值允许我们指定应在路径的哪一侧绘制文本。默认值为"left"。

示例 1

将 pathSide 属性作为键传递,并传递其默认值

让我们看一个代码示例,看看当 pathSide 属性传递了其默认值时 IText 对象是什么样子。在这里,路径已用蓝色描边突出显示。如我们所见,文本是从路径的左侧绘制的。

<!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 pathSide property as key with its default value</h2> <p>You can see that the text is drawn on the left side of the path</p> <canvas id="canvas"></canvas> <script> // 启动一个canvas实例 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, stroke: "blue", fill: "white", strokeWidth: 4, }); // 启动一个 itext 对象 var itext = new fabric.IText("Add sample text here.", { width: 300, left: 110, top: 70, fill: "red", path: path, pathSide: "left", }); // 将其添加到画布 canvas.add(itext); </script> </body> </html>

示例 2

将 pathSide 属性作为键传递,并赋予不同的值

在此示例中,我们将 pathSide 属性作为键传递,并将值设为"right"。因此,文本将绘制在路径的右侧。

<!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 pathSide property as key with a different value</h2> <p>You can see that the text is drawn on the right side of the path</p> <canvas id="canvas"></canvas> <script> // 启动一个canvas实例 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, stroke: "blue", fill: "white", strokeWidth: 4, }); // 启动一个 itext 对象 var itext = new fabric.IText("Add sample text here.", { width: 300, left: 110, top: 70, fill: "red", path: path, pathSide: "right", }); // 将其添加到画布 canvas.add(itext); </script> </body> </html>

相关文章