p5.js中的brightness()函數用於從顏色或像素陣列中提取HSB亮度值。
用法:
brightness(c)
參數:該函數接受單個參數c,該參數存儲p5.Color對象,顏色分量或CSS顏色。
以下程序說明了p5.js中的brightness()函數:
示例1:本示例使用brightness()函數從顏色或像素陣列中提取HSB亮度值。
function setup() {
// Create Canvas of size 300*80
createCanvas(300, 80);
}
function draw() {
// Set background color
background(220);
// Initialize color mode to HSB
colorMode(HSB, 255);
// Initialize the parameter
let c = color(0, 126, 100);
// Sets 'value' to 100
let value = brightness(c);
// Set the font size
textSize(16);
// Set the font color
fill(color('red'));
// Display result
text("Brightness Value is : " + value, 50, 30);
}
輸出:
示例2:本示例使用brightness()函數提取HSB亮度值並將其填充為灰度整數值。
function setup() {
// Create Canvas of size 300*180
createCanvas(300, 180);
}
function draw() {
// Set background color
background(220);
// Initialize color mode to HSB
colorMode(HSB, 255);
// Initialize the parameter
let c = color(0, 126, 100);
// Sets 'value' to 100
let value = brightness(c);
// Fill the color
fill(value);
// Create rectangle
rect(50, 15, 35, 70);
// Display result
text("Value of brightness is : " + value, 22, 110);
}
輸出:
參考: https://p5js.org/reference/#/p5/brightness
相關用法
- CSS brightness()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js tan()用法及代碼示例
- PHP each()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- p5.js box()用法及代碼示例
- PHP pow( )用法及代碼示例
- p5.js red()用法及代碼示例
- p5.js nfp()用法及代碼示例
- p5.js nfc()用法及代碼示例
- p5.js nf()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | brightness() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。