hi,
Im starting to try to create fonts whoever im having problems locating where the fonts are...
<br />
<b>Warning</b>: imagettftext(): Could not find/open font in <b>/home/ziggy/public_html/fonts/testing.php</b> on line <b>8</b><br />
ÿØÿàJFIFÿþ>CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality
here is my code...taken from the php manual
header("Content-type: image/jpeg");
$im = imagecreate(400, 30);
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// Replace path by your own font path
imagettftext($im, 20, 0, 10, 20, $black, "/ziggy/public_html/fonts/ARIAL.ttf", "Testing... Omega: &#937;");
imagejpeg($im);
imagedestroy($im);
here are the combinations i have tried...
/fonts/ARIAL.ttf
home/ziggy/public_html/fonts/ARIAL.ttf
arial
any help would be greatly appreciated!