xxxxxxxxxx
32
/*
Image Used:https://www.pexels.com/photo/close-up-of-a-wolfdog-standing-in-a-body-of-water-25255009/
By Lee Dunican
*/
var wolfdogImage;
function preload() {
wolfdogImage = loadImage("starewolfdog.jpg");
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
//Draw Image of Wolddog
image(wolfdogImage, 0, -50, 400, 500);
textFont(30);
textSize(70);
textAlign('CENTER')
text("Feed Me Seymor", 250, 200,100, 200);
fill('Red');
}
{
function mousePressed(){
save('Feed Me.png')
}
}