Javascript Articles - Page 78 of 534

How to set the background colour of text lines with Text using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:57:44

366 Views

In this tutorial, we are going to learn how to set the background colour of text lines with Text using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. Similarly we can also set the background colour of text lines by using the textBackgroundColor property. Syntax new fabric.Text(text: String , { textBackgroundColor : String }: ... Read More

How to set the angle of rotation of an instance in Text using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:56:03

270 Views

In this tutorial, we are going to learn how to set the angle of rotation of an instance in Text using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. Similarly, we can also set the angle of rotation of an instance by using the rotate method. Syntax rotate(angle: Number) Parameters angle − ... Read More

How to set the angle of rotation of a Text using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:54:18

1K+ Views

In this tutorial, we are going to set the angle of rotation of a Text using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. The angle property in FabricJS defines the angle of 2D rotation of an object. We also have the centeredRotation property that allows us to use the center point of a ... Read More

How to make controlling corners of Text transparent using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:48:13

180 Views

In this tutorial, we are going to learn how to make the controlling corners of Text transparent using FabricJS.We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. The transparentCorners property allows us to make the controlling corners of Text object transparent. Syntax new fabric.Text(text: String ,{ transparentCorners: Boolean }: Object) Parameters text − This ... Read More

How to include Text object's default values in its serialization using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:46:34

328 Views

In this tutorial, we are going to learn how to include Text object’s default values in its serialization using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but we can also add additional functionalities. Serialization is used in order to export canvas contents. In order to achieve this we use toObject() and toJSON() methods. The includeDefaultValues property allows us to include or omit the object’s default values when being serialized. Syntax new fabric.Text(text: String , { includeDefaultValues: Boolean }: ... Read More

How to get the style of current selection in Text using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:44:58

873 Views

In this tutorial, we are going to learn how to get the style of current selection of Text using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. We can also find the style of current selection by using the getSelectionStyles method. Syntax getSelectionStyles(startIndexopt, endIndexopt, completeopt) Parameters startIndexopt − This parameter accepts a ... Read More

How to get the scaled width of Text using FabricJS

Rahul Gurung
Updated on 14-Sep-2022 10:43:43

944 Views

In this tutorial, we are going to learn how to get the scaled width of Text using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. We can also find the object’s scaled width by using the getScaledWidth method. Syntax getScaledWidth() Example 1 Using the getScaledWidth method Let’s see a code example to see ... Read More

How to get the scaled height of Text using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:41:56

336 Views

In this tutorial, we are going to learn how to get the scaled height of Text using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. We can also find the object’s scaled height by using the getScaledHeight method. Syntax getScaledHeight() Example 1 Using the getScaledHeight method Let’s see a code example to see ... Read More

How to get the opacity of Text object using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:40:23

243 Views

In this tutorial, we are going to learn how to get the opacity of Text using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. We can also find the opacity of an object by using the getObjectOpacity method. Syntax getObjectOpacity() Example 1 Using the getObjectOpacity method Let’s see a code example to see ... Read More

How to get the object scale factor of Text using FabricJS?

Rahul Gurung
Updated on 14-Sep-2022 10:38:50

293 Views

In this tutorial, we are going to learn how to get the object scale factor of Text using FabricJS. We can display text on canvas by adding an instance of fabric.Text. Not only does it allow us to move, scale and change the dimensions of the text but it also provides additional functionality like text alignment, text decoration, line height which can be obtained by the properties textAlign, underline and lineHeight respectively. We can also find the object scale factor by using the getObjectScaling method. Syntax getObjectScaling() Example 1 Using the getObjectscaling method Let’s see a code example to ... Read More

Advertisements