La función saturation() en p5.js se usa para extraer el valor de saturación HSL y HSB de una array de colores o píxeles.
Sintaxis:
saturation(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 de saturación() en p5.js:
Ejemplo 1: este ejemplo utiliza la función saturation() para extraer el valor de saturación HSL y HSB 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 color mode to HSB colorMode(HSL, 255); // Initialize the parameter let c = color(0, 126, 100); // Sets 'value' to 126 let value = saturation(c); // Set the font size textSize(16); // Set the font color fill(color('red')); // Display result text("Saturation Value is : " + int(value), 50, 30); }
Producción:
Ejemplo 2: este ejemplo utiliza la función saturation() para extraer el valor de saturación HSL y HSB de la array de píxeles y rellenarlo como valor de escala de grises.
function setup() { // Create Canvas of size 300*180 createCanvas(300, 180); } function draw() { // Set the background color background(220); // Initialize color mode to HSB colorMode(HSB, 255); // Initialize the parameter let c = color(56, 126, 10); // Sets 'value' to 126 let value = saturation(c); // Fill the color fill(value); // Create rectangle rect(50, 15, 35, 70); // Display result text("Value of Saturation is : " + int(value), 22, 110); }
Producción:
Referencia: https://p5js.org/reference/#/p5/saturation
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