このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の textSize関数を説明します。
textSize()
説明文
現在のフォントサイズを設定/取得します。フォントサイズはピクセル単位です。
構文
textSize(theSize)
textSize()
パラメタ
- theSize
Number:設定するフォントサイズ(ピクセル単位)
例1
function setup() {
createCanvas(200, 200);
textSize(12);
text('Font Size 12', 10, 30);
textSize(14);
text('Font Size 14', 10, 60);
textSize(16);
text('Font Size 16', 10, 90);
}
実行結果
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。