xxxxxxxxxx
32
let img;
let aspect = 9 / 16; // temporary value
function preload() {
img = loadImage("image.jpg");
}
function setup() {
aspect = img.height / img.width;
createCanvas(windowWidth, max(windowHeight, aspect * windowWidth));
}
function windowResized() {
resizeCanvas(windowWidth, max(windowHeight, aspect * windowWidth));
}
function draw() {
image(img, 0, 0, width, aspect * width);
fill('red');
stroke('black')
let font_size = width / 35;
textSize(font_size * 2);
let title = "A Manifesto for Bibble Babble"
text(title, font_size * 2, font_size * 2, width - font_size*4, aspect * width);
let mytext = "Bibble Babble, the whimsical sound of joyful chatter, fills the air with a lighthearted energy that's as infectious as it is delightful. It's the language of playful banter and gleeful exchanges, where words dance and twirl in a merry melody of nonsensical symphony. Amidst this babble, there's an underlying harmony, a secret code of happiness that binds speakers in a shared moment of carefree bliss. Bibble babble isn't just noise; it's a celebration of the spontaneous, the unpredictable joy of conversation that flows like a babbling brook, full of surprises at every turn and inviting all who hear it to join in the dance of dialogue, where laughter is the chorus and every syllable a note in the song of camaraderie.";
textSize(font_size);
text(mytext, font_size * 2, font_size * 5, width - font_size*3, aspect * width);
}