Solution to “imagettfbbox() [function.imagettfbbox]: Could not find/open font”
2010 August 21
If you are using the imagettfbbox() PHP function and come across this error:
imagettfbbox() [function.imagettfbbox]: Could not find/open font
The solution is to use neither relative nor absolute path to the font but to use a path like this:
$font = './arial.ttf';
No comments yet