xxxxxxxxxx
39
/* image example
Michal Shahaf
10/12/22
https://www.rawpixel.com/image/2337571
*/
var height = 400;
var width = 400;
var img;
var h = height / 2;
var w = width / 2;
function preload() {
img = loadImage("john.png");
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(104, 168, 152);
image(img, 0, 200, 300, 200);
// var c=get(mouseX,mouseY);
// fill(c);
// ellipse(mouseX,mouseY,50,50);
fill("white");
textSize(34);
textFont("Verdana");
fill(31, 71, 60);
text("the", w / 2 - 17 - 40, 85);
textSize(56);
fill("white");
text("GOOD", w - 110, 145);
text("LISTENER", w - 110, 205);
textSize(37);
fill(31, 71, 60);
text("podcast", w + 25, 250);
}