La función red() en p5.js se usa para extraer el valor rojo de una array de colores o píxeles.
Sintaxis:
red(c)
Parámetros: esta función acepta un solo parámetro c que almacena el objeto p5.Color, los componentes de color o el color CSS.
Los siguientes programas ilustran la función red() en p5.js:
Ejemplo 1: este ejemplo usa la función red() para extraer el valor rojo de la array de píxeles.
function setup() { // Create Canvas of size 300*80 createCanvas(300, 80); } function draw() { // Set background color background(220); // Initialize the parameter let c = color(67, 126, 255, 102); // Extract the red value let y = red(c); // Set the font size textSize(16); // Set the font color fill(color('red')); // Display result text("Red Value is : " + y, 50, 30); }
Producción:
Ejemplo 2: este ejemplo usa la función red() para extraer el valor rojo de la array de píxeles y se usa como color de relleno.
function setup() { // Create Canvas of size 300*180 createCanvas(160, 180); } function draw() { // Set background color background(220); // Initialize the parameter let c = color(80, 126, 100, 34); // Sets 'value' to 80 let value = red(c); // Fill the color fill(value, 0, 0); // Create rectangle rect(50, 15, 35, 70); // Display result text("Value of red is : " + value, 22, 110); }
Producción:
Referencia: https://p5js.org/reference/#/p5/red
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