How to make a text path in IText invisible using FabricJS?


In this tutorial, we are going to learn about how to make a text path in IText invisible using FabricJS. The IText class was introduced in FabricJS version 1.4, extends fabric.Text and is used to create IText instances. An IText instance gives us the freedom to select, cut, paste or add new text without additional configurations. There are also various supported key combinations and mouse/touch combinations which make text interactive which are not provided in Text.

Textbox, however, which is based on IText allows us to resize the text rectangle and wraps lines automatically. This is not true for IText as height is not adjusted based on the wrapping of lines. We can manipulate our IText object by using various properties. Likewise, we can make a text path invisible by using the visible property.

Syntax

new fabric.IText(text: String , { path: fabric.Path(path: Array|String , { visible: Boolean }: Object) }: Object)

Parameters

  • text − This parameter accepts a String which is the text string that we want to display as our text.

  • options (optional) − This parameter is an Object which provides additional customizations to our IText object. Using this parameter colour, cursor, stroke width and a lot of other properties can be changed related to the IText object of which visible is a property.

Options Keys

  • visible − This property accepts a Boolean value which allows us to specify whether an object should be rendered on the canvas or not.

Example 1

Creating a Path for our IText object

We can create a text path using the path property. As we can see in this example, the path created has been highlighted in black. The “M” command stands for move and tells the invisible pen to move to point “0,0”. The “C” command stands for “cubic bezier” which makes the pen draw a bezier curve starting from current position to “100,-100”, further uses “150, -100“ as control point at the beginning of a line, and “300, 0” as the control point at the end of the line. In this case, we have not used the visible property to show the appearance of the IText object without it.

<!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>Creating a path for our IText object</h2> <p>You can see that the text path has been created</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, fill: "black", }); // Initiate an itext object var itext = new fabric.IText("Add sample text here.", { width: 300, left: 50, top: 70, fill: "red", path: path, pathSide: "left", pathStartOffset: 0, }); // Add it to the canvas canvas.add(itext); </script> </body> </html>

Example 2

Passing the path property as key and making it invisible

In this example, we have passed the path property as key. However, since we have assigned the visible property a false value, the path will no longer be visible.

<!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 path property as key and making it invisible</h2> <p>You can see that text path is not longer visible</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, visible: false, }); // Initiate an itext object var itext = new fabric.IText("Add sample text here.", { width: 300, left: 50, top: 70, fill: "red", path: path, pathSide: "left", pathStartOffset: 0, }); // Add it to the canvas canvas.add(itext); </script> </body> </html>

Updated on: 13-Sep-2022

201 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements