xxxxxxxxxx
44
/*
Assignment: Logo/Meme
*/
//"Making Fun of Gas Prices by AgentAkit
//License This image was marked with a CC BY-NC 2.0 license
//https://search.openverse.engineering/image/a05a8f3b-9cf6-4368-a91c-ff83958dd9a6
function mouseClicked() {
save ("Assignment: Logo/Meme.jpg ")
}
var x =500
var t ='Gas Prices'
var b ='Right Now'
var Memeimage;
function preload(){
Memeimage = loadImage("Memeimage.jpg");
}
function setup() {
createCanvas(x, x);
}
function draw() {
image(Memeimage,0,0,width,height);
fill('white');
stroke('black');
strokeWeight(10);
textSize(40);
textStyle(BOLD);
textFont('Helvetica');
textAlign(CENTER);
text(t, 0, 5,width);
text(b, 0, 450, width);
}