Rahul Gurung

Rahul Gurung

490 Articles Published

Articles by Rahul Gurung

Page 27 of 49

How to change the font weight of a Textbox using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 29-Jul-2022 578 Views

In this tutorial, we are going to see how to change the font weight 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. Font weight refers to the value which determines how bold or light our text will appear.Syntaxnew fabric.Textbox(text: String, { fontWeight: Number|String }: Object)Parameterstext − This parameter accepts a String which is the text string that we want to display inside our textbox.options (optional) − This parameter ...

Read More

How to change the font style of a Textbox using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 29-Jul-2022 951 Views

In this tutorial, we are going to see how to change the font style 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. Font style refers to the style of characters typed within a textbox.Syntaxnew fabric.Textbox(text: String, { fontStyle: String }: 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 ...

Read More

How to change the font size of a Textbox using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 29-Jul-2022 714 Views

In this tutorial, we are going to see how to change the font size 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. The font size specifies how large or small the characters displayed in our textbox should be. We can change the font size by using the fontSize property.Syntaxnew fabric.Textbox(text: String, { fontSize: Number }: Object)Parameterstext − This parameter accepts a String which is the text string that we ...

Read More

How to add stroke to a Textbox using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 29-Jul-2022 447 Views

In this tutorial, we are going to learn how to add stroke to 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. Our textbox object can be customized in various ways like changing its dimensions, adding a background colour, or by changing the colour of the line drawn around the object. We can do this by using the stroke property.Syntaxnew fabric.Textbox(text: String, { stroke : String }: Object)Parameterstext − This ...

Read More

How to add dashed stroke to a Textbox using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 29-Jul-2022 260 Views

In this tutorial, we are going to learn how to add a dashed stroke to 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. The strokeDashArray property allows us to specify a dash pattern for the object's stroke.Syntaxnew fabric.Textbox(text: String, { strokeDashArray: Array }: 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 ...

Read More

How to set the width of stroke of Rectangle using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 30-Jun-2022 515 Views

In this tutorial, we are going to learn how to set the width of stroke of a Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas.The strokeWidth property allows us to specify the width of a stroke for an object.Syntaxnew fabric.Rect( { strokeWidth: Number }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width and a lot of ...

Read More

How to set the vertical scale factor of Rectangle using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 30-Jun-2022 222 Views

In this tutorial, we are going to learn how to set the vertical scale factor of a Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas.Just as we can specify the position, colour, opacity and dimension of a rectangle object in the canvas, we can also set the vertical scale of a rectangle object. This can be done by using the scaleY property.Syntaxnew fabric.Rect({ scaleY : Number }: Object)ParametersOptions (optional) − This parameter is ...

Read More

How to set the style of controlling corners of a Rectangle using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 30-Jun-2022 267 Views

In this tutorial, we are going to learn how to set the style of controlling corners of Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas.The controlling corners of an object allow us to scale, stretch or change its position. We can customize our controlling corners in many ways such as adding a specific colour to it, changing its size etc. We can change the style by using the cornerStyle property.Syntaxnew fabric.Rect({ cornerStyle: String ...

Read More

How to set the size of the controlling corners of Rectangle using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 30-Jun-2022 354 Views

In this tutorial, we are going to learn how to set the size of the controlling corners of a Rectangle using FabricJS. The controlling corners of an object allow us to scale, stretch or change its position.We can customize our controlling corners in many ways such as adding a specific colour to it, changing its size etc. We can change the size by using the cornerSize property.Syntaxnew fabric.Rect({ cornerSize: Number }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of ...

Read More

How to set the padding of a Rectangle using FabricJS?

Rahul Gurung
Rahul Gurung
Updated on 30-Jun-2022 659 Views

In this tutorial, we are going to learn how to set the padding of a Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas.Just as we can specify the position, colour, opacity and dimension of a rectangle object in the canvas, we can also set the padding of a rectangle object. This can be done by using the padding property.Syntaxnew fabric.Rect({ padding : Number }: Object)ParametersOptions (optional) − This parameter is an Object which ...

Read More
Showing 261–270 of 490 articles
« Prev 1 25 26 27 28 29 49 Next »
Advertisements