当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js textSize()用法及代码示例


p5.j​​s中的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



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | textSize() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。