Using the imagettftext function with multiple lines? Anyone done this before?

后端 未结 4 940
时光说笑
时光说笑 2021-02-09 11:20

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

4条回答
  •  逝去的感伤
    2021-02-09 11:33

    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...

提交回复
热议问题