Introducción : la función opacity() es una función incorporada en Nodejs | Jimp que multiplica la opacidad de cada píxel por un factor entre 0 y 1.
Sintaxis:
opacity(f, cb)
Parámetro:
- f : este parámetro almacena el valor por el cual la imagen se vuelve opaca. Tiene un rango de 0 a 1. 1 hará que la imagen sea completamente transparente.
- cb : este es un parámetro opcional que se invoca cuando se completa la compilación.
Imágenes de entrada:
Entorno de configuración:
npm init -y
Instalar dependencias:
npm install jimp
Ejemplo 1:
javascript
// 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'); // opacity function image.opacity(.3) .write('opacity1.png'); } main(); console.log("Image Processing Completed");
Producción:
Ejemplo 2: Con cb (parámetros opcionales)
javascript
// 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'); // opacity function using callback function image.opacity(.5, function(err){ if (err) throw err; }) .write('opacity2.png'); } main(); console.log("Image Processing Completed");
Producción:
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