View Single Post
ישן 11-06-08, 07:01   # 1
lior19901
חבר בקהילה
 
lior19901's Avatar
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 34
הודעות: 257

lior19901 לא מחובר  

איך להוסיף תמונה ולשנות בפונט בGD?

PHP קוד:
function image() {
    
header ("Content-type: image/png");
    
$string substr(md5(time()), 0,5); 
    
$font 5;
    
$width 60;
    
$height 22;
    
$im = @imagecreate ($width,$height);
    
$background_color imagecolorallocate ($im224224224);
    
$text_color imagecolorallocate($im25500);
    
imagestring ($im$font75,$string$text_color);
    
imagepng ($im);

איך אני מהוסיף לזה תמונה ברקע ולשנות פונט?

תודה מראש
__________________
  Reply With Quote