xxxxxxxxxx
39
/*
Assignment 4: Logo
https://commons.wikimedia.org/wiki/File:Heart-image.png
- heart from wiki commons
*/
// variable declaration
var heart;
function preload(){
heart = loadImage("1.jpeg");
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
//Text
textAlign(CENTER,CENTER);
textFont("American Typewriter")
textSize(260)
text("I",100,100);
text("N",100,300);
text("Y",300,300);
//Heart
image(heart,166,0,208,208);
}
function mousePressed() {
save("Logo.png");
}