xxxxxxxxxx
27
//Meme Sketch
function setup() {
createCanvas(400, 400);
}
// Cat Image by https://steamcommunity.com/sharedfiles/filedetails/?id=2962970042
var catxsuitimage;
function preload(){
catxsuitimage = loadImage("catxsuit.jpeg");
}
function draw() {
background(220);
image(catxsuitimage, 0, 0, 400 , 450 );
var margin = 200;
textSize(50)
stroke('white')
strokeWeight(5)
textAlign(CENTER, TOP)
text("I am the CEO, Cat Executive Officer in Charge", mouseX, margin, 400, 400)
}