xxxxxxxxxx
30
let img;
function preload(){
// Change the name of the image file to choose
// a different colour
img = loadImage('data/name-sticker-b.png');
}
function setup(){
createCanvas(img.width, img.height);
}
function draw(){
background(img);
// The code below is helps to figure out x, y coordinates
// Click on the canvas and it will display the position
// You can delete this when you are done.
if (mouseIsPressed){
text(mouseX + ", " + mouseY, mouseX, mouseY);
}
textSize(28);
text("Thumper the dog", 115, 179);
text("2", 94, 231);
text("Bird chasing and tail wagging", 147, 283);
text("Coco, Charlie, Maggie", 142, 332);
// Add you code to display details on canvas here...
}