I am trying to write text from a db to images. The text some times contains lengthy lines so that it does't fit in one line on image.
As of now I am getting the output as: http://prntscr.com/29l582
This is the code for this:
$imageCreator = imagecreatefrompng($i+1 . ".png");
$textColor = imagecolorallocate($imageCreator, 0, 0, 0);
$textfromdb = $factformatted['fact'];
$y = imagesy($imageCreator) - 228;
$dimensions = imagettfbbox(20, 0, $fontname, $textfromdb);
$x = ceil(($imageWidth - $dimensions[4]) / 2);
imagettftext($imageCreator, 20, 0, $x, $y, $textColor, $fontname, $textfromdb);
imagepng($imageCreator, "./fact".$i.".png");
Can someone help me to make it work?
You can use the wordwrap function and the explode function to truncate the text in multiple arrays of string, then print them:
You obtain this output:
Than you can elaborate it (cutting the text, print each string on different lines, etc...).
Example (printing on new lines):
To center both vertical and horizontal: