xxxxxxxxxx
32
var Texttext = ("Me when I accidently delete my whole sketch file instead of the png");
function setup() {
createCanvas(400, 400);
}
var clownImage;
function preload() {
clownImage = loadImage("clown.png");
}
function setup() {
createCanvas(400, 400);
imageMode(CENTER);
}
function draw() {
background(2);
}
function draw() {
background(220);
image(clownImage, 200, 280, 300, 300);
textSize(33);
textLeading(32);
fill('purple');
stroke('black');
strokeWeight(5);
textFont("Trebuchet MM");
textAlign(CENTER,LEFT);
text("Me when I accidently delete my whole sketch file instead of the png", 0, 20, 400, 400);
}