如何在 FabricJS 中设置 IText 文本路径的偏移量?
在本教程中,我们将学习如何在 FabricJS 中使用 IText 设置文本的偏移量。IText 类是在 FabricJS 1.4 版本中引入的,它扩展了 fabric.Text,用于创建 IText 实例。IText 实例使我们能够自由地选择、剪切、粘贴或添加新文本,无需额外的配置。它还支持各种快捷键和鼠标/触摸组合,使文本具有交互性,而这些功能在 Text 中是没有的。
然而,基于 IText 的文本框允许我们调整文本矩形的尺寸并自动换行。这对于 IText 来说是不正确的,因为高度不会根据换行进行调整。我们可以使用各种属性来操作 IText 对象。同样,我们可以使用 pathStartOffset 属性来指定文本的偏移量。
语法
new fabric.IText( text: String , { pathStartOffset: Number }: Object)
参数
text − 此参数接受一个字符串,即我们想要显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的 IText 对象提供额外的自定义选项。使用此参数可以更改与 IText 对象相关的许多属性,例如颜色、光标、描边宽度等等,其中 pathStartOffset 就是一个属性。
选项键
pathStartOffset − 此属性接受一个数字值,它决定文本路径起始位置的偏移量。
示例 1
文本对象的默认外观
让我们来看一个代码示例,看看在不使用 pathStartOffset 属性时 itext 对象是什么样的。这里,路径已用蓝色描边突出显示。我们可以看到,文本路径的偏移量为 null。
<!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 appearance of text object</h2> <p>You can see that offset amount for text path is null</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, stroke: "blue", fill: "white", strokeWidth: 4, }); // Initiate an itext object var itext = new fabric.IText("Add sample text here.", { width: 300, left: 110, top: 70, fill: "red", path: path, }); // Add it to the canvas canvas.add(itext); </script> </body> </html>
示例 2
将 pathStartOffset 属性作为键传递
在这个例子中,我们把 pathStartOffset 属性作为键,值设为 18。因此,偏移量将为 18。
<!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 pathStartOffset property as key</h2> <p>You can see the offset amount for text path</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, stroke: "blue", fill: "white", strokeWidth: 4, }); // Initiate an itext object var itext = new fabric.IText("Add sample text here.", { width: 300, left: 110, top: 70, fill: "red", path: path, pathStartOffset: 18, }); // Add it to the canvas canvas.add(itext); </script> </body> </html>
广告