xxxxxxxxxx
33
function preload() {
img1 =loadImage("meme.jpg")
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background("#A89689");
imageMode(CENTER);
image(img1, 200,140,400,300);
stroke("black");
textAlign(LEFT, CENTER)
strokeWeight(4);
textWrap(CHAR);
textSize (25);
fill("0"),
textLeading(50)
text ("this essay due tmrw am i cooked?",10, 320);
}