View Single Post
ישן 13-06-06, 15:41   # 25
lalamen
חבר פורום
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 34
הודעות: 328

lalamen לא מחובר  

לפותח האשכול אם עדיין לא הצלחת הינה קוד שלקחתי מהאתר 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($im255255255);
$fgColor imagecolorallocate($im,   0,   0255);
imagestring($im$font00$text$fgColor);
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
?>
  Reply With Quote