let img; // Load the image. function preload() { img = loadImage('/assets/mona-lisa.jpg'); } function setup() { createCanvas(400, 400); // Display the image. img.resize(0, 400); image(img, 0, 0); describe('Mona lisa - by Davincci'); }