La función orderedDither() es una función incorporada en la biblioteca GraphicsMagick que se usa para ordenar la imagen. El método de tramado ordenado se utiliza para reducir el argumento de canal o tipo de canal a binario. Los valores de tipo de canal son Todo, Intensidad, Rojo, Verde, Azul, Cian, Magenta, Amarillo, Negro y Opacidad. La función devuelve el valor verdadero en caso de éxito.
Sintaxis:
orderedDither( ChannelType, NxN )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- ChannelType: este parámetro se usa para especificar el tipo de canal como Todo, Intensidad, Rojo, Verde, Azul, Cian, Magenta, Amarillo, Negro y Opacidad.
- NxN: este parámetro se utiliza para especificar el nivel mínimo y máximo de la intensidad.
Valor de retorno: esta función devuelve el objeto GraphicsMagick.
Ejemplo 1:
// Include gm library var gm = require('gm'); // Import the image gm('1.png') // Invoke ordered Dither on Green // Channel with 50 x 60 .orderedDither('Green', '50x60') // Process and Write the image .write("orderedDither1.png", function (err) { if (!err) console.log('done'); });
Producción:
Ejemplo 2:
// 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 ordered Dither with 'All' // Channel with 110 x 110 .orderedDither('All', '110x110') // Process and write the image .write("ordereddither2.png", function (err) { if (!err) console.log('done'); });
Producción:
Referencia:
- http://www.graphicsmagick.org/GraphicsMagick.html#details-ordered-dither
- https://www.npmjs.com/package/gm
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