Node.js GM threshold() Function
The threshold() function is an inbuilt function in the GraphicsMagick library which is used to modify the image such that any pixel’s intensity value greater than the threshold is assigned the maximum intensity (white), or otherwise is assigned the minimum intensity (black). The function returns the true value on success.
Syntax:
threshold( value, flag )
Parameters: This function accepts two parameters as mentioned above and described below:
- value: This parameter is used to specify the value of the threshold (it can be percentage).
- flag: This parameter is used to specify that given value is bool value or not. By setting ‘true’, the percentage mode is enabled.
Return Value: This function returns the GraphicsMagick object.
Original Image:
Example 1:
javascript
// Include gm library var gm = require( 'gm' ); // Import the image // Invoke threshold function .threshold(30, true ) // Process and Write the image .write( "threshold1.png" , function (err) { if (!err) console.log( 'done' ); }); |
Output:
Example 2: Overwriting the file.
javascript
// Include gm library var 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 threshold function .threshold(30, false ) // Process and write the image .write( "threshold2.png" , function (err) { if (!err) console.log( 'done' ); }); |
Output:
Reference:
Please Login to comment...