當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js red()用法及代碼示例


p5.j​​s中的red()函數用於從顏色或像素陣列中提取紅色值。

用法:

red(c)

參數:該函數接受單個參數c,該參數存儲p5.Color對象,顏色分量或CSS顏色。


以下程序說明了p5.js中的red()函數:

示例1:本示例使用red()函數從像素陣列中提取紅色值。

function setup() { 
  
    // Create Canvas of size 300*80 
    createCanvas(300, 80); 
} 
  
function draw() { 
      
    // Set background color 
    background(220); 
      
    // Initialize the parameter 
    let c = color(67, 126, 255, 102); 
      
    // Extract the red value 
    let y = red(c); 
      
    // Set the font size 
    textSize(16); 
  
    // Set the font color 
    fill(color('red')); 
      
    // Display result 
    text("Red Value is : " + y, 50, 30); 
}

輸出:

示例2:本示例使用red()函數從像素陣列中提取紅色值並用作填充顏色。

function setup() { 
  
    // Create Canvas of size 300*180 
    createCanvas(160, 180); 
} 
  
function draw() { 
      
    // Set background color 
    background(220); 
      
    // Initialize the parameter 
    let c = color(80, 126, 100, 34); 
      
    // Sets 'value' to 80 
    let value = red(c);  
      
    // Fill the color 
    fill(value, 0, 0); 
      
    // Create rectangle 
    rect(50, 15, 35, 70); 
      
    // Display result 
    text("Value of red is : " + value, 22, 110); 
}

輸出:

參考: https://p5js.org/reference/#/p5/red



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | red() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。