xxxxxxxxxx
32
function preload() {
//img=loadImage('https://upload.wikimedia.org/wikipedia/en/5/5f/Funny_Man_1994_Poster.jpg');
img = loadImage("./Test3.png",success, fail);
//img.resize(2000,2000)
}
function setup() {
//img.resize(2000,2000)
createCanvas(400,400);
//img.loadPixels();
//console.log(pixels[1]);
//image(img, 0, 0);
}
function success()
{
console.log("SUCCESS");
}
function fail()
{
console.log("FAIL");
}
function draw() {
//background(220);
image(img, 0,0);
}