xxxxxxxxxx
34
//Meme Draft by Loverta Brown
var meme;
var confuse = "Meme confusion";
var paragraph = "when you are trying to understand what is a meme";
function preload() {
meme = loadImage("meme.png");
}
function setup() {
var canvas = createCanvas(600, 400);
canvas.drawingContext.miterLimit = 2;
}
function draw() {
background("pink");
imageMode(CENTER);
image(meme, width / 2, height / 2, 400, 500);
textAlign(CENTER, CENTER);
fill("black");
stroke("green");
strokeWeight(2);
textFont(BOLD);
textSize(45);
text(confuse, width / 2, 30); //top text
textFont(NORMAL);
textSize(19);
strokeWeight(2);
text(paragraph, width / 2, height - 20); // bottom text
save("Meme-Draft.png");
}