Open In App

Node.js GM thumbnail() Function

Improve
Improve
Like Article
Like
Save
Share
Report

The thumbnail() function is an inbuilt function in the GraphicsMagick library which is used to make the thumbnail image of the given image. The function returns the true value of success.

Syntax:  

thumbnail( x, y )

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

  • x: This parameter is used to specify the width of the thumbnail image.
  • y: This parameter is used to specify the height of the thumbnail image.

Return Value: This function returns the GraphicsMagick object.

Original Image: 

Example 1: 

javascript




// Include gm library
const gm = require('gm');
 
// Import the image
gm('1.png')
 
// Invoke thumbnail function x, y as 300, 200
.thumbnail(300, 200)
 
// Process and Write the image
.write("thumbnail1.png", function (err) {
    if (!err) console.log('done');
});


Output: 


Example 2: 

javascript




// Include gm library
const gm = require('gm');
 
// Import the image
gm(600, 300, 'white')
 
// set the color for the stroke
.stroke("green", 3)
 
// Set the font
.font("Helvetica.ttf", 60)
 
//Call to drawText Function
.drawText(100, 280, "GeeksforGeeks!")
 
// Invoke thumbnail function
// on x, y as 300, 150
.thumbnail(300, 150)
 
// Process and write the image
.write("thumbnail2.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