La función trim() es una función incorporada en la biblioteca GraphicsMagick que se usa para eliminar bordes que son exactamente del mismo color que los píxeles de las esquinas. La función devuelve el valor verdadero en caso de éxito.
Sintaxis:
trim()
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve el objeto GraphicsMagick con una imagen recortada agregada.
Imagen original:
Ejemplo 1:
// Include gm library var gm = require('gm'); // Import the image gm('1.png') // Invoke trim function .trim() // Process and Write the image .write("trim1.png", function (err) { if (!err) console.log('done'); });
Producción:
Ejemplo 2:
// Include gm library var gm = require('gm'); // Import the image gm('1.png') // Set stroke color .stroke("#fe1232") // Set fill color .fill("#1200ff") // Draw Rectangle using drawRectangle function .drawRectangle(10, 2, 130, 30, 1, 2) // Invoke wave function with an amplitude // as 8 and wavelength as 3 .wave(20, 30) // Invoke trim function .trim() // Process and Write the image .write("trim2.png", function (err) { if (!err) console.log('done'); });
Producción:
Referencia:
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA