p5.js中的textSize()函數用於設置或返回文本的字體大小。此函數在以後對text()函數的所有調用中使用。
用法:
textSize(size)
或者
textSize()
參數:此函數接受單個參數的大小,該參數存儲以像素為單位的文本大小。
以下程序說明了p5.js中的textSize()函數:
範例1:本示例使用textSize()函數設置文本的字體大小。
function setup() {
// Create Canvas of given size
createCanvas(380, 170);
}
function draw() {
let string = "GeeksforGeeks";
// Set the background color
background(220);
// Set the text size
textSize(30);
// Set the text
text(string, 100, 30);
}
輸出:
範例2:本示例使用textSize()函數返回文本的字體大小。
function setup() {
// Create Canvas of given size
createCanvas(380, 170);
}
function draw() {
let string = "GeeksforGeeks";
// Set the background color
background(220);
// Set the text size
textSize(16);
// store the size of text
var u = textSize();
// Set the stroke color
stroke(255, 204, 0);
// Display result
text("Value of Text Size is : "
+ u, 50, 30);
}
輸出:
參考: https://p5js.org/reference/#/p5/textSize
相關用法
- p5.js nfc()用法及代碼示例
- PHP cos( )用法及代碼示例
- p5.js nfp()用法及代碼示例
- p5.js nfs()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | textSize() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。