Saturday, October 25, 2025
HomeLanguagesJavascriptp5.js height variable

p5.js height variable

The height variable in p5.js is a system variable which stores the height of the drawing canvas. It sets the second parameter of createCanvas() function.

Syntax:

height

Below programs illustrate the height variable in p5.js:

Example 1: This example uses height variable to display the height of canvas.




function setup() {
      
    // Create Canvas of size 380*80  
    createCanvas(380, 80);
}
   
function draw() {
      
    // Set the background color
    background(220);
      
    // Set the text size
    textSize(16);
      
    // Set the text alignment
    textAlign(CENTER);
      
    // Set the text color
    fill(color('Green'));
      
    // Display result
    text("Height of Canvas is : "
        + height, 180, 50);


Output:

Example 2: This example uses height variable to display the height of window.




function setup() {
  // set height to window height 
height = windowHeight;
  //create Canvas of size 380*80 
  createCanvas(380, height);
}
  
function draw() {
  background(220);
  textSize(16);
  textAlign(CENTER);
  fill(color('Green'));
  text("Height of Canvas is : "+height, 180, height/2); //use of height variable
}


Output:

Reference: https://p5js.org/reference/#/p5/height

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS