לפותח האשכול אם עדיין לא הצלחת הינה קוד שלקחתי מהאתר
http://www.widgnet.com/gdf_fonts/
שמראה איך לשנות את הפונט (לפונט שיצרת בתוכנה שהבאתי)
PHP קוד:
<?php
// כאן תכתוב את מיקומו של הפונט
$font = imageloadfont('arial.gdf');
$fontWidth = imagefontwidth($font);
$fontHeight = imagefontheight($font);
// הטקסט שלך כאן
$text = 'LaLaMeN';
$im = imagecreate(strlen($text) * $fontWidth, $fontHeight);
$bgColor = imagecolorallocate($im, 255, 255, 255);
$fgColor = imagecolorallocate($im, 0, 0, 255);
imagestring($im, $font, 0, 0, $text, $fgColor);
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
?>