p5.js中的saturation()函数用于从颜色或像素阵列中提取HSL和HSB饱和度值。
用法:
saturation(c)
参数:该函数接受单个参数c,该参数存储p5.Color对象,颜色分量或CSS颜色。
以下程序说明了p5.js中的saturation()函数:
示例1:本示例使用saturation()函数从像素阵列中提取HSL和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(HSL, 255);
// Initialize the parameter
let c = color(0, 126, 100);
// Sets 'value' to 126
let value = saturation(c);
// Set the font size
textSize(16);
// Set the font color
fill(color('red'));
// Display result
text("Saturation Value is : "
+ int(value), 50, 30);
}
输出:
示例2:本示例使用saturation()函数从像素阵列中提取HSL和HSB饱和度值,并将其填充为灰度值。
function setup() {
// Create Canvas of size 300*180
createCanvas(300, 180);
}
function draw() {
// Set the background color
background(220);
// Initialize color mode to HSB
colorMode(HSB, 255);
// Initialize the parameter
let c = color(56, 126, 10);
// Sets 'value' to 126
let value = saturation(c);
// Fill the color
fill(value);
// Create rectangle
rect(50, 15, 35, 70);
// Display result
text("Value of Saturation is : "
+ int(value), 22, 110);
}
输出:
参考: https://p5js.org/reference/#/p5/saturation
相关用法
- PHP key()用法及代码示例
- PHP pos()用法及代码示例
- p5.js sin()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- p5.js tan()用法及代码示例
- p5.js log()用法及代码示例
- p5.js cos()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- p5.js day()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- CSS hsl()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | saturation() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。