In PHP, I am generate an image which has stylised text added to it. The text is dynamic and can have a number of styles applied to it.
e.g The quick brown fox jumped over the lazy dog
How can I do this in PHP?
In PHP there is diffferent methods to ad text with a different style/font type/ siize etc. Check out: http://php.net/manual/en/function.imagettftext.php or http://php.net/manual/en/function.imagestring.php and several other methods in
To keep record of the size of your string and manage the placement you can use http://php.net/manual/en/function.imagettfbbox.php.