Open In App

Node.js GM rotate() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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:

  • angle: This parameter stores the value of the angle.
  • color: This parameter stores the value of the color as a string which is to be set as the background color.

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

Original Image: 

 

Example 1: 

javascript




// 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: 

javascript




// 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:



Last Updated : 30 Mar, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads