xxxxxxxxxx
41
/*
image example
image used:
https://www.freemalaysiatoday.com/category/leisure/2018/12/15/apple-to-roll-out-new-snoopy-peanuts-cartoon-series/
*/
// Variable declaration
// Use this to save the image data
// to be used by both preload and draw
var catImage;
function preload(){
catImage = loadImage("snoopy.webp");
}
function setup() {
createCanvas(600, 400);
}
function draw() {
background(220);
// Draw the image
image(catImage, 0, -50, 600, 500);
//Toptext
textFont("Futura");
textSize(50);
textAlign(CENTER,BOTTOM);
stroke("red");
strokeWeight(5);
fill("white");
text("Don't Push Me", width / 2, height-50);
}