Javascript Articles - Page 100 of 534

How to create a Rectangle with background colour using FabricJS?

Rahul Gurung
Updated on 28-Jun-2022 12:38:09

530 Views

In this tutorial, we are going to create a Rectangle with background colour 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 backgroundColor property allows us to assign a colour to our object’s background. It is the colour of the container where the rectangle lives and is rectangular in shape for the rectangle.Syntaxnew fabric.Rect({ backgroundColor: String }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, ... Read More

How to create a canvas with Rectangle using FabricJS?

Rahul Gurung
Updated on 28-Jun-2022 12:31:54

655 Views

In this tutorial, we are going to learn how to create a canvas with a Rectangle object using FabricJS. Rectangle is one of the various 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.Syntaxnew fabric.Rect({ width: Number, height: 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 other properties can be changed related to the rectangle object of which width and height ... Read More

How to add stroke to a Rectangle using FabricJS?

Rahul Gurung
Updated on 28-Jun-2022 12:24:16

655 Views

In this tutorial, we are going to learn how to add stroke to 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.Our rectangle 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.Rect({ stroke : String }: Object)ParametersOptions (optional) − This parameter is an Object which ... Read More

How to add shadow to a Rectangle using FabricJS?

Rahul Gurung
Updated on 28-Jun-2022 12:16:01

409 Views

In this tutorial, we are going to learn how to add a shadow to 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.Our rectangle object can be customized in various ways like changing its dimensions, adding a background color, or even adding a shadow to it. We can add a shadow to the rectangle by using the shadow property.Syntaxnew fabric.Rect({ shadow : fabric.Shadow }: Object)ParametersOptions (optional) − This parameter is an Object which ... Read More

How to add dashed stroke to a Rectangle using FabricJS?

Rahul Gurung
Updated on 28-Jun-2022 12:10:15

831 Views

In this tutorial, we are going to learn how to add a dashed stroke to 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 strokeDashArray property allows us to specify a dash pattern for the object's stroke.Syntaxnew fabric.Rect( { strokeDashArray: Array }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter colour, cursor, stroke width and a lot of other properties can be ... Read More

How to add curves to a Rectangle using FabricJS?

Rahul Gurung
Updated on 28-Jun-2022 11:54:45

2K+ Views

In this tutorial, we are going to learn how to add curves to 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.We can customize a rectangle object by specifying its position, colour, opacity and dimension. However, we can also use properties like rx and ry which allow us to assign the horizontal and vertical border radius of a Rectangle.Syntaxnew fabric.Rect({ rx : Number, ry: Number }: Object)ParametersOptions (optional) − This parameter is an ... Read More

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

Rahul Gurung
Updated on 30-Jun-2022 14:45:35

514 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
Updated on 30-Jun-2022 14:44:19

220 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
Updated on 30-Jun-2022 14:42:55

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
Updated on 30-Jun-2022 14:41:49

350 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

Advertisements