p5.js | Función textLeading()

La función textAlign() en p5.js se usa para establecer el espacio, en píxeles, entre líneas de texto. Esta función se utiliza en todas las llamadas posteriores a la función text().

Sintaxis:

textLeading(leading)

Parámetros: esta función acepta un solo argumento inicial que almacena el tamaño en píxeles para el espacio entre las líneas.

Los siguientes programas ilustran la función textLeading() en p5.js:

Ejemplo 1: este ejemplo utiliza la función textAlign() para establecer el espacio, en píxeles, entre líneas de texto.

function setup() {
  
    // Create Canvas of given size
    createCanvas(380, 170);
}
  
function draw() {
    let string = "Geeks \n For \n Geeks";
      
    // Set the background color
    background(220);
      
    // Set the text size
    textSize(16);
      
    // Set the text 
    text(string, 0, 30);
      
    // set the text leading
    textLeading(34)
      
    text(string, 100, 30);
      
    // set the text leading
    textLeading(60)
      
    text(string, 200, 30);
}

Producción:

Ejemplo 2: este ejemplo usa la función textAlign() para devolver el espacio, en píxeles, entre líneas de texto.

function setup() {
  
    // Create Canvas of given size
    createCanvas(380, 170);
}
  
function draw() {
      
    let string = "Geeks \n For \n Geeks";
      
    // Set the background color
    background(220);
      
    // Set the text size
    textSize(16);
      
    // Set the text leading
    textLeading(34)
      
    // Get the value of text leading
    var u = textLeading();
      
    // Set the stroke color
    stroke(255, 204, 0);
      
    // Display the value
    text("Value of TextLeading is : " + u, 50, 30);
}

Producción:

Referencia: https://p5js.org/reference/#/p5/textLeading

Publicación traducida automáticamente

Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *