Open In App

Node.js GM rotate() Function

The rotate() function is an inbuilt function in the GraphicsMagick library which is used to rotate the image by the specified angle. The function returns the true value of success. 

Syntax:



rotate( angle, color )

Parameters: This function accepts two parameters as mentioned above and described below:

Return Value: This function returns the GraphicsMagick object with an image added. 



Original Image: 

 

Example 1: 




// Include gm library
const gm = require('gm');
 
// Import the image
gm('gfg.png')
 
// Invoke rotate function with background
// color as #545651 and rotation angle as
// 78 Degrees clockwise.
.rotate("#545651", 78)
 
// Process and Write the image
.write("rotate1.png", function (err) {
    if (!err) console.log('done');
});

Output:

  

Example 2: 




// Include gm library
const gm = require('gm');
 
// Import the image
gm('gfg.png')
 
// Set stroke color
.stroke("#fe1232")
 
// Set fill color
.fill("#1200ff")
 
// Draw Rectangle using drawRectangle function
.drawRectangle(10, 2, 130, 30, 1, 2)
 
//Invoke Sharpen Function with radius as 10
.sharpen(10, 4)
 
// Invoke rotate function with background
// color as #67f123 and rotation angle as
// 45 Degrees clockwise.
.rotate("#67f123", 45)
 
// Process and Write the image
.write("rotate2.png", function (err) {
    if (!err) console.log('done');
});

Output:

  

Reference:


Article Tags :