imagettftext word wrap code example
Example: imagettftext word wrap
//$text = the text you want outputted by imagettftext()
$new_text = wordwrap($text, 20, "<br />\n");
imagettftext($im, 18, 0, 10, 90, $white, $font, $new_text);
//$text = the text you want outputted by imagettftext()
$new_text = wordwrap($text, 20, "<br />\n");
imagettftext($im, 18, 0, 10, 90, $white, $font, $new_text);