Introducción
El modificador xor es un modificador de color incorporado en Nodejs | Jimp, que trata los dos colores como campos de bits y aplica una operación XOR a los componentes rojo, verde y azul de la imagen dada.
image.color([ { apply: 'xor', params: value } ]);
Parámetro:
- valor : este parámetro almacena el color al que se aplicará la operación xor.
Imágenes de entrada:
Ejemplo 1:
// npm install --save jimp // import jimp library to the environment var Jimp = require('jimp'); // User-Defined Function to read the images async function main() { const image = await Jimp.read ('https://media.geeksforgeeks.org/wp-content/uploads/20190328185307/gfg28.png'); // color function having xor modifier image.color([{apply:'xor', params: ['green']}]) .write('xor1.png'); } main(); console.log("Image Processing Completed");
Salida:
Ejemplo 2: cb (parámetros opcionales)
// npm install --save jimp // import jimp library to the environment var Jimp = require('jimp'); // User-Defined Function to read the images async function main() { const image = await Jimp.read ('https://media.geeksforgeeks.org/wp-content/uploads/20190328185333/gfg111.png'); // color function having xor modifier image.color([{apply:'xor', params: ['blue']}], function(err){ if (err) throw err; }) .write('xor2.png'); } main(); console.log("Image Processing Completed");
Salida:
Referencia: https://www.npmjs.com/package/jimp
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