Hi,
I was wondering I'm trying to make an image and put some strings on it, now every time I try to load the font, it fails to open/find the font... now I've tried a lot of things, and checked the path carefully, but it looks ok whether make an absolute or relative path, any help would be really welcome!
Thanks in advance!!!
<?php
$imagine = imagecreatefromjpeg("http://www.site.com/remote.jpg");
$red = imagecolorallocate($imagine,255,0,0);
$fontloc ="/home/blablabla/map/verdana.ttf";
imagettftext($imagine,11,32,115,32,$red,$fontloc,"Your are: blabla");
imagettftext($imagine,11,75,115,75,$red,$fontloc,"$HTTP_USER_AGENT");
imagettftext($imagine,11,120,115,120,$red,$fontloc,"$REMOTE_ADDR");
imagejpeg($imagine);
imagedestroy($imagine);
?>