p5.js |亮度()函数
p5.js 中的lightness()函数用于从颜色或像素数组中提取 HSL 亮度值。
句法:
lightness(c)
参数:此函数接受单个参数c ,它存储 p5.Color 对象、颜色分量或 CSS 颜色。
下面的程序说明了 p5.js 中的 lightness()函数:
示例 1:此示例使用 lightness()函数从像素阵列中提取 HSL 亮度值。
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 100
let value = lightness(c);
// Set the font size
textSize(16);
// Set the font color
fill(color('red'));
// Display result
text("Lightness Value is : " + value, 50, 30);
}
输出:
示例 2:本示例使用 lightness()函数从像素阵列中提取 HSL 亮度值并将其用作灰度值。
function setup() {
// Create Canvas of size 300*80
createCanvas(300, 180);
}
function draw() {
// SEt background color
background(220);
// Initialize color mode to HSB
colorMode(HSL, 255);
// Initialize the parameter
let c = color(56, 126, 10);
// Sets 'value' to 10
let value = lightness(c);
// Fill the color value
fill(value);
// Create rectangle
rect(50, 15, 35, 70);
// Display result
text("Value of Lightness is : " + value, 22, 110);
}
输出:
参考: https://p5js.org/reference/#/p5/lightness