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