Saturday, November 15, 2025
HomeLanguagesJavascriptFabric.js invertTransform() Method

Fabric.js invertTransform() Method

The invertTransform() method is used to return the inverted form of the specified array transform. This function computes the bit-wise Inversion of an array element.

Syntax:

invertTransform(t)

Parameters: This method accepts a parameter as mentioned above and described below:

  • t: This parameter holds the specified array transform.

Return Value: This method returns the inverted form of the specified array transform.

Example 1:

Javascript




<!DOCTYPE html>
<html>
 
<head>
    <!-- Adding the FabricJS library -->
    <script src=
    </script>
</head>
 
<body>
    <script type="text/javascript">
 
        // Calling invertTransform() function over
        // some array transform
        console.log(fabric.util
            .invertTransform([1, 2, 3]));
 
        console.log(fabric.util
            .invertTransform([1, 2, 3, 4]));
 
        console.log(fabric.util
            .invertTransform([1, 2, 3, 4, 5]));
 
        console.log(fabric.util
            .invertTransform([1, 2, 3, 4, 5, 6]));
    </script>
</body>
 
</html>


Output:

[null,null,null,null,null,null]
[-2,1,1.5,-0.5,null,null]
[-2,1,1.5,-0.5,null,null]
[-2,1,1.5,-0.5,1,-2]

Example 2:

Javascript




<!DOCTYPE html>
<html>
 
<head>
    <!-- Adding the FabricJS library -->
    <script src=
    </script>
</head>
 
<body>
    <script type="text/javascript">
 
        // Specifying some arrays
        var array1 = [5, 10, 15, 20];
        var array2 = [1, 3, 5, 7, 9, 11];
 
        // Calling invertTransform() function
        // over the above array transform
        console.log(fabric.util.invertTransform(array1));
        console.log(fabric.util.invertTransform(array2));
    </script>
</body>
 
</html>


Output:

[-0.4,0.2,0.3,-0.1,null,null]
[-0.875,0.375,0.625,-0.125,1,-2]
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS