Thursday, October 23, 2025
HomeLanguagesJavascriptp5.js width variable

p5.js width variable

The width variable in p5.js is a system variable that stores the width of the drawing canvas. This value is automatically initialised by the first parameter of the createCanvas() function as soon as the code is executed.

Syntax:

width

Parameters: This function does not accept any parameter.

Below program illustrates the width variable in p5.js:
Example-1:




function setup() {
    
    //create Canvas of size 380*80  
    createCanvas(380, 80);
}
  
function draw() {
    
    // set background color
    background(220);
    
    // set text size 
    textSize(16);
    
    // set the text alignment 
    textAlign(CENTER);
    
    //set the fill color
    fill(color('Green'));
    
    //use of width variable
    text("Width of Canvas is : "
         + width, 180, 50);
}


Output:

Example-2:




function setup() {
    
    //create Canvas of size 380*80 
    width = windowWidth;
    createCanvas(width, 80);
}
  
function draw() {
    // set background color
    background(220);
    
    // set text size 
    textSize(16);
    
    // set the text alignment 
    textAlign(CENTER);
    
    //set the fill color
    fill(color('Green'));
    
    //use of width variable
    text("Width of Canvas is equal to windowWidth i.e. : "
         + width, 180, 50);
}


Output:

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

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