xxxxxxxxxx
43
/*
Meme Draft
Alina Perdomo
10/20/22
Image taken from Peakpx
https://www.peakpx.com/en/hd-wallpaper-desktop-vqbzp
*/
var catCrying;
function preload () {
catCrying = loadImage
('catCry.jpg');
}
function setup() {
createCanvas(400, 500);
}
function draw() {
var h = height ;
var w = width ;
background(220);
imageMode (CENTER);
image (catCrying, width/2,height/2, 400, 500);
textAlign (CENTER);
fill ("white");
stroke ("black");
strokeWeight (3)
textFont ("Impact")
textSize (40)
text ("Me",w /2,50);
textSize (25)
text ("taking a shower @ 5am before work", w/2,h-40);
//save ('memedraft.png')
}