xxxxxxxxxx
34
//Jonathan Armella_Meme_Image
//"Bear in a funny position" by Tambako the Jaguar is marked with CC BY-ND 2.0. //https://search.openverse.engineering/image/0b4be79f-2820-467f-91f7-a46c66aab30b
var x =400
var s ='HOW EVERY NEW YORKER FEELS'
var bearImage;
function preload(){
bearImage = loadImage("Bear.jpg");}
function mouseClicked() {
save ("Meme.png ")//Jonathan_Armella_meme
}
function setup() {
createCanvas(x, x);
}
function draw() {
background(220);
//imageMode(CENTER)
image(bearImage,0,0,x+50,height);
fill('white');
stroke('black');
strokeWeight(4);
textSize(30);
textStyle(BOLD);
textFont('Impact');
text(s, 20, 35);
text('ON THE FIRST DAY OF SPRING',40,380);
}