xxxxxxxxxx
20
t="Haider Ali Punjabi"
s=60
function preload() {
dbs=loadFont("https://raw.githubusercontent.com/HackeSta/DBSScouterFont/master/DBSScouter.ttf")
}
function setup() {
textFont(dbs)
textSize(s)
createCanvas(textWidth(t)+20,s);
}
function draw() {
background(220);
strokeWeight(0)
textAlign(CENTER,BASELINE)
console.log(textAscent())
text(t,width/2,(height)-textDescent())
}