p5.js | función createWriter()

La función createWriter() en p5.js se usa para crear un objeto p5.PrintWriter que se puede usar para escribir o imprimir en varios flujos disponibles.

Sintaxis:

createWriter( name, [extension] )

Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación.

  • name: Es una string que denota el nombre del archivo a crear.
  • extensión: Es una string que especifica la extensión del archivo. Es un parámetro opcional.

Valor devuelto: Devuelve un objeto p5.PrintWriter que denota al escritor.

El siguiente ejemplo ilustra la función createWriter() en p5.js:

Ejemplo 1:

let fwriter;
  
function setup() {
  createCanvas(600, 300);
  textSize(18);
  
  // Create a textarea for the input of text
  inputArea = createElement("textarea");
  inputArea.position(30, 50);
  inputArea.size(300, 100);
  
  // Create a button for saving text
  saveBtn = createButton("Save text");
  saveBtn.position(30, 160);
  saveBtn.mousePressed(saveFile);
  
  // Setup the writer
  fwriter = createWriter("note.txt");
  
  text("Click on the button below to save the written text", 20, 20);
}
  
function saveFile() {
  // Get the value of the textarea
  // and split the strings on the basis
  // of the nextline character
  stringList = inputArea.value().split("\n");
  
  // Save the strings to file
  for (line of stringList) {
    fwriter.print(line);
  }
  
  // Close the writer
  fwriter.close();
  
  // Clear the writer
  fwriter.clear();
}

Producción:

writer-strings

Ejemplo 2:

function setup() {
  createCanvas(600, 300);
  textSize(18);
  
  // Create two inputs for the
  // multiplication table
  multiOf = createInput();
  multiOf.position(250, 50);
  multiOf.size(50);
  
  multiTo = createInput();
  multiTo.position(250, 80);
  multiTo.size(50);
  
  // Create a button for saving text
  saveBtn = createButton("Generate and save to file");
  saveBtn.position(30, 120);
  saveBtn.mousePressed(saveFile);
  
  // Setup the writer
  fwriter = createWriter("tables.txt");
}
  
function draw() {
  clear();
  text("Fill in the values to generate a multiplication table:", 20, 20);
  text("Multiplication table of", 20, 60);
  text("Multiplication table upto", 20, 90);
}
  
function saveFile() {
  // Get the value of the two inputs
  // and generate table
  let multipicand = multiOf.value();
  let multiMax = multiTo.value();
  
  for (let multiplier = 1; multiplier <= multiMax; multiplier++) {
    let textToWrite =
      multipicand + " * " + multiplier + " = " + multipicand * multiplier;
  
    // Print to the writer
    fwriter.print(textToWrite);
  }
  
  // Close the writer
  fwriter.close();
  
  // Clear the writer
  fwriter.clear();
}

Producción:

writer-tables

Editor en línea: https://editor.p5js.org/

Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/

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

Publicación traducida automáticamente

Artículo escrito por sayantanm19 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 *