📜  p5.js |绿色()函数

📅  最后修改于: 2022-05-13 01:56:46.159000             🧑  作者: Mango

p5.js |绿色()函数

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