Found 566 Articles for FabricJS

How to set the fill colour of a Rectangle using FabricJS?

Rahul Gurung
Updated on 30-Jun-2022 13:29:23

398 Views

In this tutorial, we are going to learn how we can change the appearance of a Rectangle object by changing its fill 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.We can change the fill colour by using the fill property which allows us to specify the colour of the object’s fill.Syntaxnew fabric.Rect({ fill: String }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, ... Read More

How to set the width of a Triangle using FabricJS?

Rahul Gurung
Updated on 27-Jun-2022 12:37:37

124 Views

In this tutorial, we are going to learn how to set the width of a Triangle using FabricJS. Triangle is one of the various shapes provided by FabricJS. In order to create a triangle, we will have to create an instance of fabric.Triangle class and add it to the canvas.We can manipulate a triangle object by changing its position, opacity, stroke and also its dimension. FabricJS allows us to control an object's dimensions by using the width and height properties.Syntaxnew fabric.Triangle({ width: Number }: Object)ParametersOptions (optional) This parameter is an Object which provides additional customizations to our triangle. Using this ... Read More

How to set the vertical scale factor of a Triangle using FabricJS?

Rahul Gurung
Updated on 27-Jun-2022 12:36:26

100 Views

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

How to set a dash pattern for the controlling corners of a Rectangle using FabricJS?

Rahul Gurung
Updated on 30-Jun-2022 13:27:31

115 Views

In this tutorial, we are going to learn how we can implement the dash pattern of controlling corners of 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 also specify a dash pattern for the controlling corners by using the cornerDashArray property.Syntaxnew fabric.Rect({ cornerDashArray: Array }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, ... Read More

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

Rahul Gurung
Updated on 27-Jun-2022 12:34:54

136 Views

In this tutorial, we are going to learn how to set the style of controlling corners of Triangle using FabricJS. Triangle is one of the various shapes provided by FabricJS. In order to create a triangle, we will have to create an instance of fabric.Triangle 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.Triangle({ cornerStyle: String ... Read More

How to set the size of the controlling corners of a Triangle using FabricJS?

Rahul Gurung
Updated on 27-Jun-2022 12:31:51

90 Views

In this tutorial, we are going to learn how to set the size of the controlling corners of a Triangle 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.Triangle({ cornerSize: Number }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our triangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of ... Read More

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

Rahul Gurung
Updated on 30-Jun-2022 13:25:31

101 Views

In this tutorial, we are going to set the colour of the controlling corners of Rectangle using FabricJS. The cornerColor property allows us to manipulate the colour of the controlling corners when the object is active.Syntaxnew fabric.Rect({ cornerColor: String }: 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 object of which the cornerColor is a property.Options keyscornerColor − This property accepts a String which allows us to assign a color to ... Read More

How to set the position of a Triangle from top using FabricJS?

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

97 Views

In this tutorial, we are going to set the position of triangle using FabricJS. The top property allows us to manipulate the position of the object. By default, the top position is relative to the object's top.Syntaxnew fabric.Triangle({ top: Number }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our triangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of other properties can be changed related to the object of which the top is a property.Options Keystop − This property accepts a Number which allows us to set the distance from ... Read More

How to set the position of a Triangle from left using FabricJS?

Rahul Gurung
Updated on 27-Jun-2022 12:23:56

121 Views

In this tutorial, we are going to learn how to set the position of a Triangle from the left using FabricJS. Triangle is one of the various shapes provided by FabricJS. In order to create a triangle, we will have to create an instance of fabric.Triangle class and add it to the canvas.We can manipulate a triangle object by changing its position, opacity, stroke and also its dimension. The position from left can be changed by using the left property.Syntaxnew fabric.Triangle( { left: Number }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our triangle. Using ... Read More

How to set the padding of a Triangle using FabricJS?

Rahul Gurung
Updated on 27-Jun-2022 12:20:48

111 Views

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

Advertisements