Oh Be Forum Varmış | Hazır İndexler, Full Oyun, Fl looplar

Tam Versiyon: Php ile resim olusturma
Şu anda tam olmayan bir versiyonun içeriğine bakıyorsunuz. Tam versiyona bakınız.
Php ile resim olusturma

Bu olusan örnek bir resim her yenilede farkli bir yazi getiriyor
PHP Kodu:
<?

 $imagekod 
'';

 for (
$i 0$i 8$i++) {

 
$imagekod .= chr(mt_rand(100,120));
 
$imagekod=strtoupper($imagekod);
 }
// set up image
  
$height 30;
  
$width 100;
  
$im ImageCreate($width$height);
  
$white ImageColorAllocate ($im255255255);
  
$black ImageColorAllocate ($im12800);

// draw on image
  
ImageFill($im00$black);
//  ImageLine($im, 0, 0, $width, $height, $white);
  
ImageString($im3001510$imagekod$white);

// output image
  
Header ("Content-type: image/png");
  
ImagePng ($im);

// clean up
  
ImageDestroy($im);

?>
Referans URL