Found 538 Articles for HTML5 Canvas

How to lock the vertical movement of Textbox using FabricJS?

Rahul Gurung
Updated on 02-Aug-2022 12:14:00

152 Views

In this tutorial, we are going to learn how to lock the vertical movement of a Textbox using FabricJS. Just as we can specify the position, colour, opacity and dimension of a textbox object in the canvas, we can also specify whether we want it to move only in the X-axis. This can be done by using the lockMovementY property. Syntax new fabric.Textbox(text: String, { lockMovementY: Boolean }: Object) Parameters text − This parameter accepts a String which is the text string that we want to display inside our textbox. options (optional) − This parameter is an Object ... Read More

How to lock the rotation of Textbox using FabricJS?

Rahul Gurung
Updated on 02-Aug-2022 12:11:41

158 Views

In this tutorial, we are going to learn how to lock the rotation of a Textbox using FabricJS. Just as we can specify the position, colour, opacity and dimension of a textbox object in the canvas, we can also specify whether we want to allow rotation or not. This can be done by using the lockRotation property. Syntax new fabric.Textbox(text: String, { lockRotation : Boolean }: Object) Parameters text − This parameter accepts a String which is the text string that we want to display inside our textbox. options (optional) − This parameter is an Object which provides ... Read More

How to lock the horizontal skewing of Textbox using FabricJS?

Rahul Gurung
Updated on 02-Aug-2022 12:09:09

142 Views

In this tutorial, we are going to learn how to lock the horizontal skewing of a Textbox using FabricJS. Just as we can specify the position, colour, opacity and dimension of a textbox object in the canvas, we can also specify whether we want to stop skewing an object horizontally. This can be done by using the lockSkewingX property. Syntax new fabric.Textbox(text: String, { lockSkewingX : Boolean }: Object) Parameters text − This parameter accepts a String which is the text string that we want to display inside our textbox. options (optional) − This parameter is an Object ... Read More

How to lock the horizontal scaling of Textbox using FabricJS?

Rahul Gurung
Updated on 02-Aug-2022 12:06:20

305 Views

In this tutorial, we are going to learn how to lock the horizontal scaling of a Textbox using FabricJS. Just as we can specify the position, colour, opacity and dimension of a textbox object in the canvas, we can also specify whether we want to stop scaling an object horizontally. This can be done by using the lockScalingX property. Syntax new fabric.Textbox(text: String, { lockScalingX : Boolean }: Object) Parameters text − This parameter accepts a String which is the text string that we want to display inside our textbox. options (optional) − This parameter is an Object ... Read More

How to lock the horizontal movement of Textbox using FabricJS?

Rahul Gurung
Updated on 02-Aug-2022 12:01:55

104 Views

In this tutorial, we are going to learn how to lock the horizontal movement of a Textbox using FabricJS. Just as we can specify the position, colour, opacity and dimension of a textbox object in the canvas, we can also specify whether we want it to move only in the Y-axis. This can be done by using the lockMovementX property. Syntax new fabric.Textbox(text: String, { lockMovementX: Boolean }: Object) Parameters text − This parameter accepts a String which is the text string that we want to display inside our textbox. options (optional) − This parameter is an Object ... Read More

How to lock the flipping during scaling of Textbox using FabricJS?

Rahul Gurung
Updated on 12-Sep-2022 12:55:15

134 Views

In this tutorial, we are going to learn how to lock the flipping during scaling of a Textbox using FabricJS. Just as we can specify the position, colour, opacity and dimension of a textbox object in the canvas, we can also specify whether we want to stop flipping an object during scaling. This can be done by using the lockScalingFlip property. Syntax new fabric.Textbox(text: String, { lockScalingFlip : Boolean }: Object) Parameters text − This parameter accepts a String which is the text string that we want to display inside our textbox. options (optional) − This parameter is ... Read More

How to flip a Textbox vertically using FabricJS?

Rahul Gurung
Updated on 29-Jul-2022 13:55:24

119 Views

In this tutorial, we are going to learn how we can flip a Textbox object vertically using FabricJS. We can customize, stretch or move around the text written in a textbox. In order to create a textbox, we will have to create an instance of fabric.Textbox class and add it to the canvas. We can flip a textbox object vertically using the flipY property.Syntaxnew fabric.Textbox(text: String, { flipY: Boolean }: Object)Parameterstext − This parameter accepts a String which is the text string that we want to display inside our textbox.options (optional) − This parameter is an Object which provides additional ... Read More

How to flip a Textbox horizontally using FabricJS?

Rahul Gurung
Updated on 29-Jul-2022 13:52:39

184 Views

In this tutorial, we are going to learn how we can flip a Textbox object horizontally using FabricJS. We can customize, stretch or move around the text written in a textbox. In order to create a textbox, we will have to create an instance of fabric.Textbox class and add it to the canvas. We can flip a textbox object horizontally using the flipX property.Syntaxnew fabric.Textbox(text: String, { flipX: Boolean }: Object)Parameterstext − This parameter accepts a String which is the text string that we want to display inside our textbox.options (optional) − This parameter is an Object which provides additional customizations to our ... Read More

How to disable the selectability of Textbox using FabricJS?

Rahul Gurung
Updated on 29-Jul-2022 13:45:57

226 Views

In this tutorial, we are going to learn how to disable the selectability of a Textbox using FabricJS. We can customize, stretch or move around the text written in a textbox. In order to create a textbox, we will have to create an instance of fabric.Textbox class and add it to the canvas. In order to modify an object, we have to select it in FabricJS. However, we can change this behaviour by using the selectable property.Syntaxnew fabric.Textbox(text: String, { selectable: Boolean }: Object)Parameterstext − This parameter accepts a String which is the text string that we want to display inside ... Read More

How to disable the centered scaling of Textbox using FabricJS?

Rahul Gurung
Updated on 29-Jul-2022 13:43:23

271 Views

In this tutorial, we are going to learn how to disable the centered scaling of Textbox using FabricJS. We can customize, stretch or move around the text written in a textbox. In order to create a textbox, we will have to create an instance of fabric.Textbox class and add it to the canvas. When being scaled via controls, assigning a true value to the centeredScaling property, uses the center as the object's origin of transformation.Syntaxnew fabric.Textbox(text: String, { centeredScaling: Boolean }: Object)Parameterstext − This parameter accepts a String which is the text string that we want to display inside our textbox.options ... Read More

Advertisements