קוד:
<?
header("Content-type: image/png");
$im = imagecreate(200, 200);
$green = imagecolorallocate($im, 0, 255, 0);
$red = imagecolorallocate($im, 255, 0, 0);
imagefill($im, 0, 0, $green);
imagettftext($im, 30, 45, 50, 150, $red, "arial.ttf", "SAMPLE!");
imagepng($im);
imagedestroy($im);
?>
ניסיתי גם -
/home/***/domains/pxs.uni.cc/public_html/arial.ttf
השגיאה שאני מקבל -
HTML קוד:
<br />
<b>Fatal error</b>: Call to undefined function: imagettftext() in <b>/home/hbang/domains/pxs.uni.cc/public_html/online.php</b> on line <b>7</b><br />
חוץ מזה, כשאני משתמש ב-
imagecreatefromgif
imagecolorallocate
imagestring
imagegif
imagedestroy
הכל עובד פיקס.
אני לא יודע מה הבעיה, ניסיתי כבר כמה דוגמאות.