xxxxxxxxxx
14
let img;
function preload(){
img = loadImage('newleaf.png')
}
function setup() {
createCanvas(400, 400);
imageMode(CENTER);
}
function draw() {
background(200, 255, 200);
image(img, width/2, height/2);
img.resize(0, 200);
}