xxxxxxxxxx
var img;
function preload() {
img = loadImage("NINTCHDBPICT000477762511.jpg");
font = loadFont("BATMAN.ttf");
}
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
textFont(font);
textSize(windowHeight);
textAlign(CENTER);
fill(255);
}
function draw() {
translate(windowWidth/2,windowHeight/1.1);
//blendMode(BLEND);
text("BATMAN",0,0);
ellipse(0,0,30,30);
//blendMode(MULTIPLY);
//image(img, 0,0,windowWidth,windowHeight);
}