xxxxxxxxxx
14
let img;
function preload(){
img = loadImage("https://images.theconversation.com/files/301743/original/file-20191114-26207-lray93.jpg?ixlib=rb-1.1.0&q=45&auto=format&w=926&fit=clip")
}
function setup() {
createCanvas(800, 400);
}
function draw() {
background(220);
image(img, mouseX,mouseY, img.width/6, img.height/6);
}