La función alpha() en p5.js se usa para extraer el valor alfa de una array de colores o píxeles .
Sintaxis:
alpha(c)
Parámetros: la función acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
El siguiente programa ilustra la función alpha() en p5.js:
Ejemplo-1:
function setup() { //create Canvas of size 300*80 createCanvas(300, 80); } function draw() { background(220); //initialize the parameter let c = color(0, 126, 255, 102); //extract the alpha value let y = alpha(c); textSize(16); fill(color('red')); text("Alpha Value is : " + y, 50, 30); }
Producción:
Ejemplo-2:
function setup() { //create Canvas of size 300*80 createCanvas(160, 180); } function draw() { background(220); //initialize the parameter let c = color(0, 126, 255, 34); // Sets 'value' to 34 let value = alpha(c); fill(value); rect(50, 15, 35, 70); text("Value of alpha is : " + value, 22, 110); }
Salida:
Referencia: https://p5js.org/reference/#/p5/alpha
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