I\'m creating transparent text -> png images with php and so far so good. The only problem is that I want the ability to have the text word wrap due to a fixed width.. Or alter
Try this
$text = 'Cool Stuff! this is nice LALALALALA LALA HEEH EHEHE'; $text = wordwrap($_POST['title'], 15, "\n");
I hope it helps to others as i think its toooooo late for you...