xxxxxxxxxx
24
var img=[];
function preload(){
for(var i=0; i<1; i++)
{
file='files/newupload' + i+ '.jpeg';
// file='files/newupload0.jpeg';
img = loadImage(file);
//img = loadImage('files/newupload0.jpeg');
}
}
function setup() {
createCanvas(500, 500)
}
function draw() {
background(255);
image(img, 0,0);
}